diff options
| author | Vincent Hamm | 2007-10-28 14:41:37 +0000 |
|---|---|---|
| committer | Vincent Hamm | 2007-10-28 14:41:37 +0000 |
| commit | fc961908c59790840008049a1d97e675376312f9 (patch) | |
| tree | 5d6c4e2258c8b5ebd8888e90b882a8cea3a2efc9 /engines/cruise/function.cpp | |
| parent | 30b11df046134935133e788fffe6180c9600d199 (diff) | |
| download | scummvm-rg350-fc961908c59790840008049a1d97e675376312f9.tar.gz scummvm-rg350-fc961908c59790840008049a1d97e675376312f9.tar.bz2 scummvm-rg350-fc961908c59790840008049a1d97e675376312f9.zip | |
Find object fix
Walk fix
svn-id: r29291
Diffstat (limited to 'engines/cruise/function.cpp')
| -rw-r--r-- | engines/cruise/function.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/cruise/function.cpp b/engines/cruise/function.cpp index 35c6e46737..ddfa143418 100644 --- a/engines/cruise/function.cpp +++ b/engines/cruise/function.cpp @@ -681,8 +681,9 @@ int16 Op_AddMessage(void) { overlayIdx = currentScriptPtr->overlayNumber; if (color == -1) { - color = 0; - ASSERT(0); + color = 1; + printf("Unimplemented automatic message color\n"); + // ASSERT(0); //color = calcTabSomething(); } else { if (CVTLoaded) { |
