mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01: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:
parent
57a22f670f
commit
2cd31e8c10
@ -129,7 +129,7 @@ void cocoaGLDeleteWindow(NSWindow *window)
|
||||
[window close];
|
||||
[pool release];
|
||||
|
||||
return window;
|
||||
return;
|
||||
}
|
||||
|
||||
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
|
||||
|
@ -129,7 +129,7 @@ void cocoaGLDeleteWindow(NSWindow *window)
|
||||
[window close];
|
||||
[pool release];
|
||||
|
||||
return window;
|
||||
return;
|
||||
}
|
||||
|
||||
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)
|
||||
|
Loading…
x
Reference in New Issue
Block a user