mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
removed return false from void function (thanks jp)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1315 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -231,7 +231,7 @@ void Video_DoState(unsigned char **ptr, int mode) {
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (!wglMakeCurrent(hDC,hRC)) {
|
if (!wglMakeCurrent(hDC,hRC)) {
|
||||||
PanicAlert("Can't Activate The GL Rendering Context for saving");
|
PanicAlert("Can't Activate The GL Rendering Context for saving");
|
||||||
return false;
|
return;
|
||||||
}
|
}
|
||||||
#elif defined(OSX64)
|
#elif defined(OSX64)
|
||||||
cocoaGLMakeCurrent(GLWin.cocoaCtx,GLWin.cocoaWin);
|
cocoaGLMakeCurrent(GLWin.cocoaCtx,GLWin.cocoaWin);
|
||||||
|
Reference in New Issue
Block a user