[Scummvm-cvs-logs] scummvm master -> bda64c2b6d007c03dae9e0c569cc1d53ee54d345
clone2727
clone2727 at gmail.com
Mon Dec 16 05:11:07 CET 2013
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
bda64c2b6d PEGASUS: Fix the prehistoric volcano animations
Commit: bda64c2b6d007c03dae9e0c569cc1d53ee54d345
https://github.com/scummvm/scummvm/commit/bda64c2b6d007c03dae9e0c569cc1d53ee54d345
Author: Matthew Hoops (clone2727 at gmail.com)
Date: 2013-12-15T20:10:20-08:00
Commit Message:
PEGASUS: Fix the prehistoric volcano animations
Changed paths:
engines/pegasus/neighborhood/prehistoric/prehistoric.cpp
diff --git a/engines/pegasus/neighborhood/prehistoric/prehistoric.cpp b/engines/pegasus/neighborhood/prehistoric/prehistoric.cpp
index 578ce57..190984f 100644
--- a/engines/pegasus/neighborhood/prehistoric/prehistoric.cpp
+++ b/engines/pegasus/neighborhood/prehistoric/prehistoric.cpp
@@ -204,11 +204,11 @@ TimeValue Prehistoric::getViewTime(const RoomID room, const DirectionConstant di
void Prehistoric::findSpotEntry(const RoomID room, const DirectionConstant direction, SpotFlags flags, SpotTable::Entry &entry) {
Neighborhood::findSpotEntry(room, direction, flags, entry);
+ // The original strangely disabled the loop for the two volcano spots:
+ // (kPrehistoric01, kSouth) and (kPrehistoric25, kSouth)
+ // We don't do that here.
+
switch (MakeRoomView(room, direction)) {
- case MakeRoomView(kPrehistoric01, kSouth):
- case MakeRoomView(kPrehistoric25, kSouth):
- entry.clear();
- break;
case MakeRoomView(kPrehistoric01, kEast):
if (GameState.getPrehistoricSeenFlyer1())
entry.clear();
More information about the Scummvm-git-logs
mailing list