diff options
-rw-r--r-- | scumm/script_v1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v1.cpp b/scumm/script_v1.cpp index 169bde828d..13c07e060f 100644 --- a/scumm/script_v1.cpp +++ b/scumm/script_v1.cpp @@ -1696,8 +1696,8 @@ void Scumm::o5_roomOps() b = getVarOrDirectWord(0x40); } checkRange(256, 0, a, "o5_roomOps: 2: Illegal room color slot (%d)"); + printf("copyPalColor(%d, %d)\n", a, b); copyPalColor(a, b); - _fullRedraw = 1; } else { error("room-color is no longer a valid command"); } |