mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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:
@ -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)
|
||||||
|
Reference in New Issue
Block a user