summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-11-18 08:58:31 +0000
committernakeee <nakeee@gmail.com>2008-11-18 08:58:31 +0000
commitdb6f69c01072f98d7f97cdce6862036efffa608f (patch)
tree8c4c3d7058531fec3b96dff0185a0a3e5bd38c30 /Source/Core/VideoCommon
parentfc97253e0cc0c03a36669b79fce4a7c5659b2696 (diff)
warning fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1207 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/Src/Fifo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/Src/Fifo.cpp b/Source/Core/VideoCommon/Src/Fifo.cpp
index b71c4c602d..534a840a16 100644
--- a/Source/Core/VideoCommon/Src/Fifo.cpp
+++ b/Source/Core/VideoCommon/Src/Fifo.cpp
@@ -95,7 +95,7 @@ THREAD_RETURN GPWatchdogThread(void *pArg)
Common::SetCurrentThreadName("GPWatchdogThread");
- while (_fifo.bFF_GPReadEnable != ~0) // blah
+ while (_fifo.bFF_GPReadEnable != ~0UL) // blah
{
// 4 ms should be enough insignificant
Common::SleepCurrentThread(4);