aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]);
}
}
}