aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2011-12-16 00:46:05 +0200
committerFilippos Karapetis2011-12-16 00:46:05 +0200
commit84be5b04465fa241b1982f943df3d17a1a1ced1a (patch)
treeed101e8db856875b88c9836307889a2a80124d98
parenta6b2b9c7ff19075a159fd53f966d2c66e8ea33cd (diff)
downloadscummvm-rg350-84be5b04465fa241b1982f943df3d17a1a1ced1a.tar.gz
scummvm-rg350-84be5b04465fa241b1982f943df3d17a1a1ced1a.tar.bz2
scummvm-rg350-84be5b04465fa241b1982f943df3d17a1a1ced1a.zip
DREAMWEB: Rename 'reelCallbacksCPP' to reelCallbacks'
-rw-r--r--engines/dreamweb/people.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/dreamweb/people.cpp b/engines/dreamweb/people.cpp
index a96af8babd..fd408b772c 100644
--- a/engines/dreamweb/people.cpp
+++ b/engines/dreamweb/people.cpp
@@ -24,7 +24,7 @@
namespace DreamGen {
-static void (DreamGenContext::*reelCallbacksCPP[57])(ReelRoutine &) = {
+static void (DreamGenContext::*reelCallbacks[57])(ReelRoutine &) = {
&DreamGenContext::gamer, &DreamGenContext::sparkyDrip,
&DreamGenContext::eden, &DreamGenContext::edenInBath,
&DreamGenContext::sparky, &DreamGenContext::smokeBloke,
@@ -68,8 +68,8 @@ void DreamGenContext::updatePeople() {
if (r[i].reallocation == data.byte(kReallocation) &&
r[i].mapX == data.byte(kMapx) &&
r[i].mapY == data.byte(kMapy)) {
- assert(reelCallbacksCPP[i]);
- (this->*(reelCallbacksCPP[i]))(r[i]);
+ assert(reelCallbacks[i]);
+ (this->*(reelCallbacks[i]))(r[i]);
}
}
}