irrlicht: mac_device patch nil -> 0
This commit is contained in:
parent
4cd5481f71
commit
064e5d1085
1 changed files with 18 additions and 0 deletions
|
@ -18,3 +18,21 @@
|
|||
[NSBundle loadNibNamed:@"MainMenu" owner:[NSApp delegate]];
|
||||
[NSApp finishLaunching];
|
||||
}
|
||||
@@ -642,7 +642,7 @@
|
||||
NSOpenGLPFASamples, (NSOpenGLPixelFormatAttribute)CreationParams.AntiAlias,
|
||||
NSOpenGLPFAStencilSize, (NSOpenGLPixelFormatAttribute)(CreationParams.Stencilbuffer?1:0),
|
||||
NSOpenGLPFADoubleBuffer,
|
||||
- (NSOpenGLPixelFormatAttribute)nil
|
||||
+ (NSOpenGLPixelFormatAttribute)0
|
||||
};
|
||||
|
||||
if (CreationParams.AntiAlias<2)
|
||||
@@ -668,7 +668,7 @@
|
||||
{
|
||||
// Third try without Doublebuffer
|
||||
os::Printer::log("No doublebuffering available.", ELL_WARNING);
|
||||
- windowattribs[14]=(NSOpenGLPixelFormatAttribute)nil;
|
||||
+ windowattribs[14]=(NSOpenGLPixelFormatAttribute)0;
|
||||
}
|
||||
|
||||
format = [[NSOpenGLPixelFormat alloc] initWithAttributes:windowattribs];
|
||||
|
|
Loading…
Reference in a new issue