aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/pet
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-24 20:52:21 -0400
committerPaul Gilbert2016-07-24 20:52:21 -0400
commit875002daea7a007c2727685a767eaaf3709a5252 (patch)
treee8101ea5439f951317a413e9ee69e7672b9aeeed /engines/titanic/game/pet
parentc6e2f4e68020dddea2a8248e8dd7ecdcb2147314 (diff)
downloadscummvm-rg350-875002daea7a007c2727685a767eaaf3709a5252.tar.gz
scummvm-rg350-875002daea7a007c2727685a767eaaf3709a5252.tar.bz2
scummvm-rg350-875002daea7a007c2727685a767eaaf3709a5252.zip
TITANIC: Add semicolon to DECLARE_MESSAGE_MAP usage
Diffstat (limited to 'engines/titanic/game/pet')
-rw-r--r--engines/titanic/game/pet/pet_class1.h2
-rw-r--r--engines/titanic/game/pet/pet_class2.h2
-rw-r--r--engines/titanic/game/pet/pet_class3.h2
-rw-r--r--engines/titanic/game/pet/pet_monitor.h2
-rw-r--r--engines/titanic/game/pet/pet_position.h2
-rw-r--r--engines/titanic/game/pet/pet_transport.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/engines/titanic/game/pet/pet_class1.h b/engines/titanic/game/pet/pet_class1.h
index ad97f45bb2..fb7a48b927 100644
--- a/engines/titanic/game/pet/pet_class1.h
+++ b/engines/titanic/game/pet/pet_class1.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPETClass1 : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/game/pet/pet_class2.h b/engines/titanic/game/pet/pet_class2.h
index 6ae78f4db8..c8855c82f3 100644
--- a/engines/titanic/game/pet/pet_class2.h
+++ b/engines/titanic/game/pet/pet_class2.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPETClass2 : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/game/pet/pet_class3.h b/engines/titanic/game/pet/pet_class3.h
index 780cad3b6c..59d8389665 100644
--- a/engines/titanic/game/pet/pet_class3.h
+++ b/engines/titanic/game/pet/pet_class3.h
@@ -28,7 +28,7 @@
namespace Titanic {
class CPETClass3 : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
public:
CLASSDEF;
diff --git a/engines/titanic/game/pet/pet_monitor.h b/engines/titanic/game/pet/pet_monitor.h
index 3fc50bdf63..61d1ba8ab6 100644
--- a/engines/titanic/game/pet/pet_monitor.h
+++ b/engines/titanic/game/pet/pet_monitor.h
@@ -29,7 +29,7 @@
namespace Titanic {
class CPETMonitor : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
bool EnterRoomMsg(CEnterRoomMsg *msg);
public:
CLASSDEF;
diff --git a/engines/titanic/game/pet/pet_position.h b/engines/titanic/game/pet/pet_position.h
index 9419684823..d1ac0507f4 100644
--- a/engines/titanic/game/pet/pet_position.h
+++ b/engines/titanic/game/pet/pet_position.h
@@ -29,7 +29,7 @@
namespace Titanic {
class CPETPosition : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
bool EnterRoomMsg(CEnterRoomMsg *msg);
public:
CLASSDEF;
diff --git a/engines/titanic/game/pet/pet_transport.h b/engines/titanic/game/pet/pet_transport.h
index 44beafebc8..58aefe6743 100644
--- a/engines/titanic/game/pet/pet_transport.h
+++ b/engines/titanic/game/pet/pet_transport.h
@@ -29,7 +29,7 @@
namespace Titanic {
class CPETTransport : public CGameObject {
- DECLARE_MESSAGE_MAP
+ DECLARE_MESSAGE_MAP;
virtual bool EnterRoomMsg(CEnterRoomMsg *msg);
public:
CLASSDEF;