[Scummvm-git-logs] scummvm master -> 1cc669a317e2ce4f9be79a4b8c079afe14c55f4f
digitall
547637+digitall at users.noreply.github.com
Fri Nov 8 01:07:23 CET 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
1cc669a317 SCUMM HE: Fix Signed vs. Unsigned Compiler Warning
Commit: 1cc669a317e2ce4f9be79a4b8c079afe14c55f4f
https://github.com/scummvm/scummvm/commit/1cc669a317e2ce4f9be79a4b8c079afe14c55f4f
Author: D G Turner (digitall at scummvm.org)
Date: 2019-11-08T00:04:06Z
Commit Message:
SCUMM HE: Fix Signed vs. Unsigned Compiler Warning
Changed paths:
engines/scumm/he/moonbase/net_main.cpp
diff --git a/engines/scumm/he/moonbase/net_main.cpp b/engines/scumm/he/moonbase/net_main.cpp
index 4c82de4..0139243 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()) {
More information about the Scummvm-git-logs
mailing list