From 1cc669a317e2ce4f9be79a4b8c079afe14c55f4f Mon Sep 17 00:00:00 2001 From: D G Turner Date: Fri, 8 Nov 2019 00:04:06 +0000 Subject: SCUMM HE: Fix Signed vs. Unsigned Compiler Warning --- engines/scumm/he/moonbase/net_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/scumm') 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()) { -- cgit v1.2.3