diff options
author | Alyssa Milburn | 2011-03-08 15:45:52 +0100 |
---|---|---|
committer | Alyssa Milburn | 2011-03-08 15:45:52 +0100 |
commit | 2a064a97254f1374da256d0a0c8ca4f46e96d599 (patch) | |
tree | 964238c39c53282a619559c4b11d6da36aa6c1e6 | |
parent | 92093d267fc17edd0b9f0467c93c08718f959ae4 (diff) | |
download | scummvm-rg350-2a064a97254f1374da256d0a0c8ca4f46e96d599.tar.gz scummvm-rg350-2a064a97254f1374da256d0a0c8ca4f46e96d599.tar.bz2 scummvm-rg350-2a064a97254f1374da256d0a0c8ca4f46e96d599.zip |
MOHAWK: Rename variable to fix WinCE build.
Thanks to LordHoto for working out why this was failing.
-rw-r--r-- | engines/mohawk/cstime_game.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/mohawk/cstime_game.cpp b/engines/mohawk/cstime_game.cpp index 5dfc9c4cf6..14e5d99e51 100644 --- a/engines/mohawk/cstime_game.cpp +++ b/engines/mohawk/cstime_game.cpp @@ -470,8 +470,8 @@ void CSTimeConversation::end(bool useLastClicked, bool runEvents) { _vm->getCase()->getCurrScene()->getChar(_sourceChar)->setupAmbientAnims(true); } - CSTimeInterface *interface = _vm->getInterface(); - CSTimeInventoryDisplay *invDisplay = interface->getInventoryDisplay(); + CSTimeInterface *iface = _vm->getInterface(); + CSTimeInventoryDisplay *invDisplay = iface->getInventoryDisplay(); if (invDisplay->getState() == 4) { invDisplay->hide(); invDisplay->setState(0); @@ -480,8 +480,8 @@ void CSTimeConversation::end(bool useLastClicked, bool runEvents) { setState((uint)~0); _currHover = 0xffff; - interface->clearTextLine(); - interface->clearDialogArea(); + iface->clearTextLine(); + iface->clearDialogArea(); invDisplay->show(); // TODO: stupid case 20 stuff |