diff options
| author | Max Horn | 2002-12-04 13:34:28 +0000 | 
|---|---|---|
| committer | Max Horn | 2002-12-04 13:34:28 +0000 | 
| commit | be506653c9adcee20af99adf7248c0173fc246c5 (patch) | |
| tree | fcd7277aea6b7970f7803e96baa3126bc6c4117a | |
| parent | cb2b5ab3b7d91d548dc2da40b508ad44a56b8287 (diff) | |
| download | scummvm-rg350-be506653c9adcee20af99adf7248c0173fc246c5.tar.gz scummvm-rg350-be506653c9adcee20af99adf7248c0173fc246c5.tar.bz2 scummvm-rg350-be506653c9adcee20af99adf7248c0173fc246c5.zip | |
removed unneccessary _fullRedraw; added a printf to help us track down calls to this (apparently incorrectly implemented) opcode
svn-id: r5830
| -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");  		} | 
