aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-04-20 14:28:25 +0000
committerJonathan Gray2003-04-20 14:28:25 +0000
commit90dd401eab37150f6097c1620257d60cd5f1375c (patch)
treeff5612afb6763464653cfb4f2b588a687e66632e /scumm/script.cpp
parent303a48dbbc42b8fce19d5310b87ce1edad03ecd8 (diff)
downloadscummvm-rg350-90dd401eab37150f6097c1620257d60cd5f1375c.tar.gz
scummvm-rg350-90dd401eab37150f6097c1620257d60cd5f1375c.tar.bz2
scummvm-rg350-90dd401eab37150f6097c1620257d60cd5f1375c.zip
work around strange problem that breaks fbpack when _showStack is a bool...
svn-id: r7027
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index 7552675fd0..384c46ecc8 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -280,7 +280,7 @@ void Scumm::executeScript() {
int c;
while (_currentScript != 0xFF) {
- if (_showStack == true) {
+ if (_showStack == 1) {
printf("Stack:");
for (c=0; c < _scummStackPos; c++) {
printf(" %d", _scummStack[c]);