diff options
author | Max Horn | 2003-09-05 20:35:00 +0000 |
---|---|---|
committer | Max Horn | 2003-09-05 20:35:00 +0000 |
commit | 4941df93f90ca429551c5244ff8882ef903cce57 (patch) | |
tree | efd68717fcbf599701580469e1803f0b9dccc0d5 /scumm | |
parent | 4240dcbe34a8eb9975bf9ed3404e94cea6ba0bcb (diff) | |
download | scummvm-rg350-4941df93f90ca429551c5244ff8882ef903cce57.tar.gz scummvm-rg350-4941df93f90ca429551c5244ff8882ef903cce57.tar.bz2 scummvm-rg350-4941df93f90ca429551c5244ff8882ef903cce57.zip |
removed duplicate check
svn-id: r10016
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/gfx.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index 12adeaec59..48bb5398e5 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -2714,10 +2714,6 @@ void Scumm::initCycl(const byte *ptr) { byte start = *ptr++; byte end = *ptr++; - // FIXME This value has another meaning - if (delay == 0x0aaa) - continue; - if (!delay || delay == 0x0aaa || start >= end) continue; |