diff options
author | Max Horn | 2002-12-25 15:11:49 +0000 |
---|---|---|
committer | Max Horn | 2002-12-25 15:11:49 +0000 |
commit | 75085a6077c52bc549b1a40ca0f969c9b300f72b (patch) | |
tree | bc2bb104e864c0e44e0d61be9b702e42687a2f48 | |
parent | 33cddb4c1cd8a8f1ff5f2a777edd6ff02bd509a7 (diff) | |
download | scummvm-rg350-75085a6077c52bc549b1a40ca0f969c9b300f72b.tar.gz scummvm-rg350-75085a6077c52bc549b1a40ca0f969c9b300f72b.tar.bz2 scummvm-rg350-75085a6077c52bc549b1a40ca0f969c9b300f72b.zip |
breakHereVar takes an argument -> Ctrl-C now works again (skips to the 'Part I' screen)
svn-id: r6135
-rw-r--r-- | scumm/script_v8.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 616720f9da..b712b43f91 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -583,7 +583,8 @@ void Scumm_v8::o8_mod() void Scumm_v8::o8_breakHereVar() { - warning("o8_breakHereVar NYI"); + int var = pop(); + warning("o8_breakHereVar(%d) NYI", var); o6_breakHere(); } |