diff options
author | Travis Howell | 2005-03-12 04:16:57 +0000 |
---|---|---|
committer | Travis Howell | 2005-03-12 04:16:57 +0000 |
commit | 05385e4fecc3113d195d08743db85da75c262c8a (patch) | |
tree | cc475575c910aa8a7b515035e85b87ac25297019 | |
parent | 8b484a2acfdc04da16d1739970efefd34d30c877 (diff) | |
download | scummvm-rg350-05385e4fecc3113d195d08743db85da75c262c8a.tar.gz scummvm-rg350-05385e4fecc3113d195d08743db85da75c262c8a.tar.bz2 scummvm-rg350-05385e4fecc3113d195d08743db85da75c262c8a.zip |
Missing pop
svn-id: r17087
-rw-r--r-- | scumm/script_v100he.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp index ae69324183..7b61949d78 100644 --- a/scumm/script_v100he.cpp +++ b/scumm/script_v100he.cpp @@ -733,17 +733,20 @@ void ScummEngine_v100he::o100_loadSBNG() { switch (subOp) { case 0: - //_heSBNGId = pop(); + _heSBNGId = pop(); break; case 53: //loadSBNG(_heSBNGId, -1); break; + case 92: + // dummy case + break; case 128: - pop(); //loadSBNG(_heSBNGId, pop(); + pop(); break; default: - warning("o100_loadSBNG: default case %d", subOp); + error("o100_loadSBNG: default case %d", subOp); } debug(1,"o100_loadSBNG stub (%d)",subOp); } |