From 91e889dc94535733a1efba62f1392d2cfe8be600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Andersson?= Date: Tue, 5 Apr 2005 16:29:59 +0000 Subject: [PATCH] Fixed one warning. (Several to go.) svn-id: r17393 --- gob/mult.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gob/mult.cpp b/gob/mult.cpp index 2ecb3d72bab..9dd75da1feb 100644 --- a/gob/mult.cpp +++ b/gob/mult.cpp @@ -952,7 +952,7 @@ void mult_playMult(int16 startFrame, int16 endFrame, char checkEscape, if (snd_playingSound != 0) snd_stopSound(10); - WRITE_LE_UINT32(inter_variables + 0xe4, -1); + WRITE_LE_UINT32(inter_variables + 0xe4, (uint32)-1); } else { WRITE_LE_UINT32(inter_variables + 0xe4, mult_frame - 1 - mult_frameStart); }