diff options
| author | nakeee <nakeee@gmail.com> | 2008-10-02 10:43:32 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-10-02 10:43:32 +0000 |
| commit | dc3fd905c903e1a69cf34e7fdfdde0fbc8563d00 (patch) | |
| tree | be9a67a5e8bdde0cce39094f747af4921cca5171 /Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp | |
| parent | a1837662a05ba050ae3f1d77e163138268479fa7 (diff) | |
experimental multi-core support on linux
- Input seems not to work for some reason (please check and tell me if it's not only me)
- Skip frames is not supported
Report to me of other problems
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@740 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp')
| -rw-r--r-- | Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp index ee747d3185..7d7cb4b666 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp @@ -79,7 +79,7 @@ BOOL Callback_PeekMessages() // TODO: There is no documentation of this function and the calling code // ignores the return value, so I have no idea what would be the // proper value to return.
- return FALSE;
+ return TRUE;
#elif defined(_WIN32)
//TODO: peekmessage
MSG msg;
@@ -94,7 +94,7 @@ BOOL Callback_PeekMessages() #else // GLX
// This is called from Outside of our video thread, from EmuThread
// The calls are NOT thread safe, so it breaks everything
- return FALSE;
+ return TRUE;
#endif
}
|
