aboutsummaryrefslogtreecommitdiff
path: root/engines/tony
diff options
context:
space:
mode:
authorPaul Gilbert2012-05-13 00:58:59 +1000
committerPaul Gilbert2012-05-13 00:58:59 +1000
commit28c58a7f56ada6e4c72fcddc92fc4d5a1b181224 (patch)
treed1782f223096687d4a6406291ba320c79765e304 /engines/tony
parent63e3b47857fe5a507858b4256b1f3f4d7fe50c22 (diff)
downloadscummvm-rg350-28c58a7f56ada6e4c72fcddc92fc4d5a1b181224.tar.gz
scummvm-rg350-28c58a7f56ada6e4c72fcddc92fc4d5a1b181224.tar.bz2
scummvm-rg350-28c58a7f56ada6e4c72fcddc92fc4d5a1b181224.zip
TONY: Fix unsigned comparison warning
Diffstat (limited to 'engines/tony')
-rw-r--r--engines/tony/custom.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/custom.cpp b/engines/tony/custom.cpp
index 3e8f0b95e6..b1b660c423 100644
--- a/engines/tony/custom.cpp
+++ b/engines/tony/custom.cpp
@@ -2145,7 +2145,7 @@ DECLARE_CUSTOM_FUNCTION(StartDialog)(CORO_PARAM, uint32 nDialog, uint32 nStartGr
// Wait until a choice is selected
mpalQueryDialogWaitForChoice(&_ctx->nChoice);
- while (_ctx->nChoice != -1) {
+ while (_ctx->nChoice != (uint32)-1) {
// Si fa dare la lista di opzioni e le conta
_ctx->sl = mpalQueryDialogSelectList(_ctx->nChoice);
for (_ctx->num = 0; _ctx->sl[_ctx->num] != 0; _ctx->num++)