Fixed compile warning when compiling with SDL support.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@618 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Maarten ter Huurne 2008-09-22 23:27:42 +00:00
parent bbf7377544
commit e8a14fc949
1 changed files with 4 additions and 1 deletions

View File

@ -76,7 +76,10 @@ void OpenGL_SetWindowText(const char *text)
BOOL Callback_PeekMessages() BOOL Callback_PeekMessages()
{ {
#if USE_SDL #if USE_SDL
//TODO // 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;
#elif defined(_WIN32) #elif defined(_WIN32)
//TODO: peekmessage //TODO: peekmessage
MSG msg; MSG msg;