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:
Soren Jorvang 2010-05-26 20:44:53 +00:00
parent 57a22f670f
commit 2cd31e8c10
2 changed files with 2 additions and 2 deletions

View file

@ -129,7 +129,7 @@ void cocoaGLDeleteWindow(NSWindow *window)
[window close];
[pool release];
return window;
return;
}
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)

View file

@ -129,7 +129,7 @@ void cocoaGLDeleteWindow(NSWindow *window)
[window close];
[pool release];
return window;
return;
}
void cocoaGLSwap(NSOpenGLContext *ctx,NSWindow *window)