Skip to content

Commit

Permalink
TONY: Fix unsigned comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 12, 2012
1 parent 63e3b47 commit 28c58a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/tony/custom.cpp
Expand Up @@ -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++)
Expand Down

0 comments on commit 28c58a7

Please sign in to comment.