mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
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
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user