From 5f884c6a5120406077b6cdc6bbfdf6241bfea832 Mon Sep 17 00:00:00 2001 From: jsalmon3 <> Date: Mon, 6 Oct 2003 20:47:47 +0000 Subject: [PATCH] Fixed warning --- src/map/minimap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/minimap.cpp b/src/map/minimap.cpp index 73cd7f80c..4183fca6c 100644 --- a/src/map/minimap.cpp +++ b/src/map/minimap.cpp @@ -275,7 +275,7 @@ global void UpdateMinimap(void) int h; int h0; - red_phase_changed = red_phase != ((FrameCounter / FRAMES_PER_SECOND) & 1); + red_phase_changed = red_phase != (int)((FrameCounter / FRAMES_PER_SECOND) & 1); if (red_phase_changed) { red_phase = !red_phase; }