diff options
author | D G Turner | 2019-11-08 00:04:06 +0000 |
---|---|---|
committer | D G Turner | 2019-11-08 00:04:06 +0000 |
commit | 1cc669a317e2ce4f9be79a4b8c079afe14c55f4f (patch) | |
tree | dee5ea3e5e2f50d5d00d21a5c43116adfcc497df /engines/scumm | |
parent | ccab85ffb2c735f65ddf8c688730b6d211c073f6 (diff) | |
download | scummvm-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.cpp | 2 |
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()) { |