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:
nakeee
2008-10-02 10:43:32 +00:00
parent a1837662a0
commit dc3fd905c9
4 changed files with 26 additions and 4 deletions

View File

@ -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
}