diff options
| author | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-22 23:27:42 +0000 |
|---|---|---|
| committer | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-22 23:27:42 +0000 |
| commit | e8a14fc949af19d06cb93b53a47f1183b79a13f8 (patch) | |
| tree | bcbf8552e712d235013bcaeba57834eeb6b128d1 /Source | |
| parent | bbf737754419e545a535f109723f860453d8f2ab (diff) | |
Fixed compile warning when compiling with SDL support.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@618 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp index 34111f49a6..8fd5885ef1 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GLInit.cpp @@ -76,7 +76,10 @@ void OpenGL_SetWindowText(const char *text) BOOL Callback_PeekMessages()
{
#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)
//TODO: peekmessage
MSG msg;
|
