diff options
author | Johannes Schickel | 2008-07-27 12:05:40 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-07-27 12:05:40 +0000 |
commit | bd5cac4e2efb75f67235222a8ea2ce01247429ae (patch) | |
tree | a79b2ce58786775b2a26e8ceed747b7ace11c17d | |
parent | 52e3dec37b260ca3dadaa03e66cd35552f79a9dc (diff) | |
download | scummvm-rg350-bd5cac4e2efb75f67235222a8ea2ce01247429ae.tar.gz scummvm-rg350-bd5cac4e2efb75f67235222a8ea2ce01247429ae.tar.bz2 scummvm-rg350-bd5cac4e2efb75f67235222a8ea2ce01247429ae.zip |
Fixed macro.
svn-id: r33332
-rw-r--r-- | engines/kyra/script_hof.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/script_hof.cpp b/engines/kyra/script_hof.cpp index 94f160d11f..e3a8bf95bc 100644 --- a/engines/kyra/script_hof.cpp +++ b/engines/kyra/script_hof.cpp @@ -1492,7 +1492,7 @@ typedef Common::Functor1Mem<EMCState*, int, KyraEngine_HoF> OpcodeV2; typedef Common::Functor2Mem<const TIM*, const uint16*, int, KyraEngine_HoF> TIMOpcodeV2; #define OpcodeTim(x) _timOpcodes.push_back(new TIMOpcodeV2(this, &KyraEngine_HoF::x)) -#define OpcodeTimUnImpl() _timOpcodes.push_back(TIMOpcodeV2(this, 0)) +#define OpcodeTimUnImpl() _timOpcodes.push_back(new TIMOpcodeV2(this, 0)) void KyraEngine_HoF::setupOpcodeTable() { Common::Array<const Opcode*> *table = 0; |