diff options
| author | James Brown | 2003-01-14 10:06:56 +0000 |
|---|---|---|
| committer | James Brown | 2003-01-14 10:06:56 +0000 |
| commit | 5bf741f96076fa5fcdc077d5fe0a6f4557bd1dcc (patch) | |
| tree | 980a4f529c01bfd637470130a024f690adaa87c1 /scumm/akos.cpp | |
| parent | 639cb13da189d269f53a9f895fc6109cd926c211 (diff) | |
| download | scummvm-rg350-5bf741f96076fa5fcdc077d5fe0a6f4557bd1dcc.tar.gz scummvm-rg350-5bf741f96076fa5fcdc077d5fe0a6f4557bd1dcc.tar.bz2 scummvm-rg350-5bf741f96076fa5fcdc077d5fe0a6f4557bd1dcc.zip | |
Patch 667613: Extend gfxUsageBits[]
svn-id: r6453
Diffstat (limited to 'scumm/akos.cpp')
| -rw-r--r-- | scumm/akos.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp index c1734bee29..69ba36919c 100644 --- a/scumm/akos.cpp +++ b/scumm/akos.cpp @@ -829,7 +829,7 @@ void AkosRenderer::codec1() if (v1.skip_width <= 0 || _height <= 0) return; - _vm->updateDirtyRect(0, x_left, x_right, y_top, y_bottom, 1 << _dirty_id); + _vm->updateDirtyRect(0, x_left, x_right, y_top, y_bottom, _dirty_id); y_clipping = ((uint) y_bottom > outheight || y_top < 0); @@ -949,7 +949,7 @@ void AkosRenderer::codec5() { if ((clip_right <= clip_left) || (clip_top >= clip_bottom)) return; - _vm->updateDirtyRect(0, clip_left, clip_right + 1, clip_top, clip_bottom + 1, 1 << _dirty_id); + _vm->updateDirtyRect(0, clip_left, clip_right + 1, clip_top, clip_bottom + 1, _dirty_id); if (_draw_top > clip_top) _draw_top = clip_top; @@ -1280,7 +1280,7 @@ void AkosRenderer::codec16() { if ((clip_left >= clip_right) || (clip_top >= clip_bottom)) return; - _vm->updateDirtyRect(0, clip_left, clip_right + 1, clip_top, clip_bottom + 1, 1 << _dirty_id); + _vm->updateDirtyRect(0, clip_left, clip_right + 1, clip_top, clip_bottom + 1, _dirty_id); if (_draw_top > clip_top) _draw_top = clip_top; |
