From 69ebe3747ab62e28d152767627bee97d675dca54 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 27 May 2018 20:43:04 -0400 Subject: XEEN: Fix compiler warning --- engines/xeen/interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/xeen/interface.cpp b/engines/xeen/interface.cpp index c1628da13f..6d8de93a42 100644 --- a/engines/xeen/interface.cpp +++ b/engines/xeen/interface.cpp @@ -1510,7 +1510,7 @@ void Interface::doCombat() { // FIXME: I've had a rare issue where the loop starts with a non-party _whosTurn. Unfortunately, // I haven't been able to consistently replicate and diagnose the problem, so for now, // I'm simply detecting if it happens and resetting the combat round - if (combat._whosTurn >= party._activeParty.size()) + if (combat._whosTurn >= (int)party._activeParty.size()) goto new_round; highlightChar(combat._whosTurn); -- cgit v1.2.3