aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/walk.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-07-27 19:02:19 +0000
committerNicola Mettifogo2007-07-27 19:02:19 +0000
commit67869d2c10234479949bd74abc42931a019264e6 (patch)
tree1cb396a183c2d70c7e6cfbabdc8668647aece0e9 /engines/parallaction/walk.cpp
parenta32b81d126aee4644adc074b3b091a4c121e4f7c (diff)
downloadscummvm-rg350-67869d2c10234479949bd74abc42931a019264e6.tar.gz
scummvm-rg350-67869d2c10234479949bd74abc42931a019264e6.tar.bz2
scummvm-rg350-67869d2c10234479949bd74abc42931a019264e6.zip
- Moved disk code for Nippon Safes in new file disk_ns.cpp, adding _ns suffix to classes and member functions.
- Added function stubs into new file disk_br.cpp for Big Red Adventure [IT STILL CRASHES!]. - Modified engine to create the proper Disk manager object. svn-id: r28246
Diffstat (limited to 'engines/parallaction/walk.cpp')
-rw-r--r--engines/parallaction/walk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/walk.cpp b/engines/parallaction/walk.cpp
index 5d2d005e9f..fd2fa8d186 100644
--- a/engines/parallaction/walk.cpp
+++ b/engines/parallaction/walk.cpp
@@ -41,7 +41,7 @@ static uint16 walkData2 = 0; // next walk frame
uint16 queryPath(uint16 x, uint16 y) {
// NOTE: a better solution would have us mirror each byte in the mask in the loading routine
- // AmigaDisk::loadPath() instead of doing it here.
+ // AmigaDisk_ns::loadPath() instead of doing it here.
byte _al = _buffer[y*40 + x/8];
byte _dl = (_vm->getPlatform() == Common::kPlatformPC) ? (x & 7) : (7 - (x & 7));