diff options
author | Paul Gilbert | 2012-05-13 00:58:59 +1000 |
---|---|---|
committer | Paul Gilbert | 2012-05-13 00:58:59 +1000 |
commit | 28c58a7f56ada6e4c72fcddc92fc4d5a1b181224 (patch) | |
tree | d1782f223096687d4a6406291ba320c79765e304 /engines | |
parent | 63e3b47857fe5a507858b4256b1f3f4d7fe50c22 (diff) | |
download | scummvm-rg350-28c58a7f56ada6e4c72fcddc92fc4d5a1b181224.tar.gz scummvm-rg350-28c58a7f56ada6e4c72fcddc92fc4d5a1b181224.tar.bz2 scummvm-rg350-28c58a7f56ada6e4c72fcddc92fc4d5a1b181224.zip |
TONY: Fix unsigned comparison warning
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tony/custom.cpp | 2 |
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++) |