aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorD G Turner2019-11-08 00:04:06 +0000
committerD G Turner2019-11-08 00:04:06 +0000
commit1cc669a317e2ce4f9be79a4b8c079afe14c55f4f (patch)
treedee5ea3e5e2f50d5d00d21a5c43116adfcc497df /engines/scumm
parentccab85ffb2c735f65ddf8c688730b6d211c073f6 (diff)
downloadscummvm-rg350-1cc669a317e2ce4f9be79a4b8c079afe14c55f4f.tar.gz
scummvm-rg350-1cc669a317e2ce4f9be79a4b8c079afe14c55f4f.tar.bz2
scummvm-rg350-1cc669a317e2ce4f9be79a4b8c079afe14c55f4f.zip
SCUMM HE: Fix Signed vs. Unsigned Compiler Warning
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/he/moonbase/net_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/he/moonbase/net_main.cpp b/engines/scumm/he/moonbase/net_main.cpp
index 4c82de421d..013924304b 100644
--- a/engines/scumm/he/moonbase/net_main.cpp
+++ b/engines/scumm/he/moonbase/net_main.cpp
@@ -447,7 +447,7 @@ int Net::remoteSendData(int typeOfSend, int sendTypeParam, int type, Common::Str
if (!wait)
return 0;
- int timeout = g_system->getMillis() + 1000;
+ uint32 timeout = g_system->getMillis() + 1000;
while (g_system->getMillis() < timeout) {
if (remoteReceiveData()) {