From 9a43ed822e5145f1007c0b727b95aaf8622ae7b4 Mon Sep 17 00:00:00 2001 From: nakeee Date: Thu, 27 Nov 2008 20:30:30 +0000 Subject: [PATCH] removed return false from void function (thanks jp) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1315 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/main.cpp b/Source/Plugins/Plugin_VideoOGL/Src/main.cpp index 48f155302a..b69e64047a 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/main.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/main.cpp @@ -231,7 +231,7 @@ void Video_DoState(unsigned char **ptr, int mode) { #ifdef _WIN32 if (!wglMakeCurrent(hDC,hRC)) { PanicAlert("Can't Activate The GL Rendering Context for saving"); - return false; + return; } #elif defined(OSX64) cocoaGLMakeCurrent(GLWin.cocoaCtx,GLWin.cocoaWin);