aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2004-09-12 17:33:18 +0000
committerTorbjörn Andersson2004-09-12 17:33:18 +0000
commit7688c017e162fc0808891eee22e074b69d651abf (patch)
treeca15c1a0e5047138461b4cf76153510ff6992f0c
parentd010b9e560c6eab95ffd5a46067ab9ffc8573724 (diff)
downloadscummvm-rg350-7688c017e162fc0808891eee22e074b69d651abf.tar.gz
scummvm-rg350-7688c017e162fc0808891eee22e074b69d651abf.tar.bz2
scummvm-rg350-7688c017e162fc0808891eee22e074b69d651abf.zip
Added missing parameters to debug(), as pointed out by Lord_Nightmare.
svn-id: r15080
-rw-r--r--scumm/script_v7he.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index 7de83b81a0..d862b0929a 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -1025,7 +1025,7 @@ void ScummEngine_v7he::o7_unknownFB() {
g = pop();
h = pop();
i = pop();
- debug(1,"o7_unknownFB case 246 stub (%d, %d, %d, %d, %d, %d, %d, %d, %d)", a, b, c, d, e, g, h, i);
+ debug(1,"o7_unknownFB case 246 stub (%d, %d, %d, %d, %d, %d, %d, %d, %d)", a, b, c, d, e, f, g, h, i);
break;
case 247:
a = pop();
@@ -1042,7 +1042,7 @@ void ScummEngine_v7he::o7_unknownFB() {
g = pop();
h = pop();
i = pop();
- debug(1,"o7_unknownFB case 248 stub (%d, %d, %d, %d, %d, %d, %d, %d, %d)", a, b, c, d, e, g, h, i);
+ debug(1,"o7_unknownFB case 248 stub (%d, %d, %d, %d, %d, %d, %d, %d, %d)", a, b, c, d, e, f, g, h, i);
break;
default:
error("o7_unknownFB: default case %d", subOp);