diff options
author | Filippos Karapetis | 2011-10-22 12:40:35 +0000 |
---|---|---|
committer | Willem Jan Palenstijn | 2011-11-20 22:43:12 +0100 |
commit | 14cbfd4607f0fa30dff8a7d5eb7a5caad060bc13 (patch) | |
tree | c3f74a1b2281acd5d50b2a1ab91ac9da2f2668dc | |
parent | 5c3c9f4e6cbc65648635050ce6ab794603767a0f (diff) | |
download | scummvm-rg350-14cbfd4607f0fa30dff8a7d5eb7a5caad060bc13.tar.gz scummvm-rg350-14cbfd4607f0fa30dff8a7d5eb7a5caad060bc13.tar.bz2 scummvm-rg350-14cbfd4607f0fa30dff8a7d5eb7a5caad060bc13.zip |
TOLTECS: Fixed typo
-rw-r--r-- | engines/toltecs/toltecs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toltecs/toltecs.cpp b/engines/toltecs/toltecs.cpp index 7414ab0e58..c3bb69c60b 100644 --- a/engines/toltecs/toltecs.cpp +++ b/engines/toltecs/toltecs.cpp @@ -307,7 +307,7 @@ void ToltecsEngine::drawScreen() { if (_screen->_guiRefresh && _guiHeight > 0 && _cameraHeight > 0) { // Update the GUI when needed and it's visible - if (_cameraHeight + _guiHeight > 400) + if (_cameraHeight + _guiHeight > 400) { // HACK: Sanity check - happens when smoking the peace pipe in the // Indian village. // FIXME: why does this happen? Fix the actual cause. |