aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/dm.cpp
diff options
context:
space:
mode:
authorStrangerke2016-07-25 16:18:33 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commite8e1a54ceadd1d02d860ef750f0b9a44db72e971 (patch)
treedd9f5136f2c1b2c5eeac53646d3aa76bc27efb56 /engines/dm/dm.cpp
parenta21c6778314a17e56d9faf5c5d6693a63cc634e5 (diff)
downloadscummvm-rg350-e8e1a54ceadd1d02d860ef750f0b9a44db72e971.tar.gz
scummvm-rg350-e8e1a54ceadd1d02d860ef750f0b9a44db72e971.tar.bz2
scummvm-rg350-e8e1a54ceadd1d02d860ef750f0b9a44db72e971.zip
DM: Rename mapTime in dm.cpp
Diffstat (limited to 'engines/dm/dm.cpp')
-rw-r--r--engines/dm/dm.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/dm/dm.cpp b/engines/dm/dm.cpp
index 5671fc6fcf..cd69479961 100644
--- a/engines/dm/dm.cpp
+++ b/engines/dm/dm.cpp
@@ -102,16 +102,16 @@ uint16 M21_normalizeModulo4(uint16 val) {
return val & 3;
}
-int32 M30_time(int32 map_time) {
- return map_time & 0x00FFFFFF;
+int32 M30_time(int32 mapTime) {
+ return mapTime & 0x00FFFFFF;
}
-int32 M33_setMapAndTime(int32 &map_time, uint32 map, uint32 time) {
- return (map_time) = ((time) | (((long)(map)) << 24));
+int32 M33_setMapAndTime(int32 &mapTime, uint32 map, uint32 time) {
+ return (mapTime) = ((time) | (((long)(map)) << 24));
}
-uint16 M29_map(int32 map_time) {
- return ((uint16)((map_time) >> 24));
+uint16 M29_map(int32 mapTime) {
+ return ((uint16)((mapTime) >> 24));
}
Thing M15_thingWithNewCell(Thing thing, int16 cell) {