aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorChristoph Mallon2012-03-13 10:06:00 +0100
committerAlyssa Milburn2012-03-13 15:43:23 +0100
commitd21cef411721984d4c6cabc7df04cbab9b725978 (patch)
tree8110a0759a69e88bb3ce576ac5965bf0982f5ed7 /engines/parallaction
parentbc238a5ff38c5cb0ed563a3c56ade155b511bbde (diff)
downloadscummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.gz
scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.bz2
scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.zip
JANITORIAL: Avoid the ugly operator invocation syntax.
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/objects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/objects.h b/engines/parallaction/objects.h
index 387e7af088..81761b2c6b 100644
--- a/engines/parallaction/objects.h
+++ b/engines/parallaction/objects.h
@@ -377,12 +377,12 @@ public:
int16 getValue() const {
assert(_accessor);
- return _accessor->operator()();
+ return (*_accessor)();
}
void setValue(int16 value) {
assert(_mutator);
- _mutator->operator()(value);
+ (*_mutator)(value);
}
};