diff options
| author | Travis Howell | 2004-09-01 10:15:10 +0000 |
|---|---|---|
| committer | Travis Howell | 2004-09-01 10:15:10 +0000 |
| commit | 2a23b8fbc9414853c7246a9029f6e78c0aca7507 (patch) | |
| tree | e76fd3e05681f4a227e1d4fd1a34ce6f62860dac | |
| parent | d8fe05a5fa9de0122aefbd8811d0e1110c7dec3f (diff) | |
| download | scummvm-rg350-2a23b8fbc9414853c7246a9029f6e78c0aca7507.tar.gz scummvm-rg350-2a23b8fbc9414853c7246a9029f6e78c0aca7507.tar.bz2 scummvm-rg350-2a23b8fbc9414853c7246a9029f6e78c0aca7507.zip | |
Add misisng case (Used in funpack)
svn-id: r14856
| -rw-r--r-- | scumm/script_v6he.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp index 900de14687..a7b20b6f81 100644 --- a/scumm/script_v6he.cpp +++ b/scumm/script_v6he.cpp @@ -522,7 +522,7 @@ void ScummEngine_v6he::o6_roomOps() { case 220: a = pop(); b = pop(); - warning("o6_roomops:220 (%d, %d): unimplemented", a, b); + copyPalColor(a, b); break; case 221: int len; |
