name cleanups

metadata
Wenzel Jakob 2011-08-19 19:37:51 -04:00
parent 25e4e1bdf1
commit 78043e4040
2 changed files with 3 additions and 3 deletions

View File

@ -391,7 +391,7 @@ NSGLDevice::~NSGLDevice() {
void NSGLDevice::init(Device *other) {
Device::init(other);
__ubi_init_cocoa();
__mts_init_cocoa();
NSOpenGLPixelFormatAttribute attribs[32];
uint i=0;

View File

@ -18,11 +18,11 @@
#import <Cocoa/Cocoa.h>
extern int ubi_main(int argc, char **argv);
extern int mts_main(int argc, char **argv);
int main(int argc, char **argv) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retval = ubi_main(argc, argv);
int retval = mts_main(argc, argv);
[pool release];
return retval;
}