diff options
author | Nicola Mettifogo | 2008-01-06 20:46:03 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2008-01-06 20:46:03 +0000 |
commit | 35b7021fac0f6cf4352027054417862e6e31beb9 (patch) | |
tree | 600079f8a77656b2ccefeded2852a459bc667213 /engines | |
parent | eeb212c7e0fd49670bcab942f2db2234a244dfc7 (diff) | |
download | scummvm-rg350-35b7021fac0f6cf4352027054417862e6e31beb9.tar.gz scummvm-rg350-35b7021fac0f6cf4352027054417862e6e31beb9.tar.bz2 scummvm-rg350-35b7021fac0f6cf4352027054417862e6e31beb9.zip |
Fixes wrong type.
svn-id: r30313
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/dialogue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/dialogue.cpp b/engines/parallaction/dialogue.cpp index 9595ec057d..de4ef28f8c 100644 --- a/engines/parallaction/dialogue.cpp +++ b/engines/parallaction/dialogue.cpp @@ -162,7 +162,7 @@ bool DialogueManager::displayAnswer(uint16 i) { // display suitable answers if (((a->_yesFlags & flags) == a->_yesFlags) && ((a->_noFlags & ~flags) == a->_noFlags)) { - uint id = _vm->_gfx->setDialogueBalloon(a->_text, 1, 3); + int id = _vm->_gfx->setDialogueBalloon(a->_text, 1, 3); assert(id >= 0); _visAnswers[id] = i; |