diff options
-rw-r--r-- | engines/voyeur/events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/events.cpp b/engines/voyeur/events.cpp index 7f8f55f9aa..22b70b435c 100644 --- a/engines/voyeur/events.cpp +++ b/engines/voyeur/events.cpp @@ -252,7 +252,7 @@ void EventsManager::startFade(CMapResource *cMap) { int mapIndex = 0; for (int idx = _fadeFirstCol; idx <= _fadeLastCol; ++idx, vgaP += 3) { - Common::copy(&cMap->_entries[mapIndex], &cMap->_entries[mapIndex + 3], vgaP); + Common::copy(&cMap->_entries[mapIndex], &cMap->_entries[mapIndex + 2], vgaP); if (!(cMap->_fadeStatus & 1)) mapIndex += 3; |