Don't return a value from a void function.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5481 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
57a22f670f
commit
2cd31e8c10
|
@ -129,7 +129,7 @@ void cocoaGLDeleteWindow(NSWindow *window)
|
||||||
[window close];
|
[window close];
|
||||||
[pool release];
|
[pool release];
|
||||||
|
|
||||||
return window;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
|
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
|
||||||
|
|
|
@ -129,7 +129,7 @@ void cocoaGLDeleteWindow(NSWindow *window)
|
||||||
[window close];
|
[window close];
|
||||||
[pool release];
|
[pool release];
|
||||||
|
|
||||||
return window;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
|
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
|
||||||
|
|
Loading…
Reference in New Issue