aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/neighborhood/neighborhood.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pegasus/neighborhood/neighborhood.cpp')
-rw-r--r--engines/pegasus/neighborhood/neighborhood.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/pegasus/neighborhood/neighborhood.cpp b/engines/pegasus/neighborhood/neighborhood.cpp
index 60668a7dde..7b7f229adc 100644
--- a/engines/pegasus/neighborhood/neighborhood.cpp
+++ b/engines/pegasus/neighborhood/neighborhood.cpp
@@ -128,7 +128,7 @@ void Neighborhood::init() {
createNeighborhoodSpots();
- // TODO: Load _navMovie
+ _navMovie.initFromMovieFile(getNavMovieName());
_navMovie.setVolume(_vm->getSoundFXLevel());
loadSoundSpots();
@@ -602,9 +602,9 @@ void Neighborhood::stopStriding() {
}
// Compass support
-uint16 Neighborhood::getStaticCompassAngle(const tRoomID, const tDirectionConstant dir) {
+int16 Neighborhood::getStaticCompassAngle(const tRoomID, const tDirectionConstant dir) {
// North, south, east, west
- static const uint16 compassAngles[] = { 0, 180, 90, 270 };
+ static const int16 compassAngles[] = { 0, 180, 90, 270 };
return compassAngles[dir];
}