diff options
author | Max Horn | 2003-05-28 22:13:30 +0000 |
---|---|---|
committer | Max Horn | 2003-05-28 22:13:30 +0000 |
commit | 2aaa13438a90543f35f98a233074878b63307cfe (patch) | |
tree | 162cd4e3aeb73fd99d880c368f9c6e3489eaba6e | |
parent | 6a8bd23d025bbe7be7553ec95ccf88f1eb2a6cbb (diff) | |
download | scummvm-rg350-2aaa13438a90543f35f98a233074878b63307cfe.tar.gz scummvm-rg350-2aaa13438a90543f35f98a233074878b63307cfe.tar.bz2 scummvm-rg350-2aaa13438a90543f35f98a233074878b63307cfe.zip |
modify actor 5 to get kenny in COMI to draw properly
svn-id: r8066
-rw-r--r-- | scumm/akos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp index 8dfd847bda..ce6f4e9f92 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -942,7 +942,7 @@ byte AkosRenderer::codec5() { } if ((clip_right <= clip_left) || (clip_top >= clip_bottom)) - return 0; + return 1; _vm->updateDirtyRect(0, clip_left, clip_right + 1, clip_top, clip_bottom + 1, _dirty_id); |