diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/parallaction/callables_ns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/callables_ns.cpp b/engines/parallaction/callables_ns.cpp index 70d5b22009..d0acd0a425 100644 --- a/engines/parallaction/callables_ns.cpp +++ b/engines/parallaction/callables_ns.cpp @@ -359,7 +359,7 @@ void Parallaction_ns::_c_frankenstein(void *parm) { Palette pal0(_gfx->_palette); Palette pal1; - for (uint16 i = 0; i <= 32; i++) { + for (uint16 i = 0; i < 32; i++) { pal0.setEntry(i, -1, 0, 0); // leaves reds unchanged while zeroing other components } |