aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/parrot
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-24 20:30:56 -0400
committerPaul Gilbert2016-07-24 20:30:56 -0400
commit4d79ee16c07e2398e9058fe93947b4704cd6048a (patch)
tree50c5234e21822d777e9a989c9af918feb6654a22 /engines/titanic/game/parrot
parenteb98b984fb5a630422013ab5f030d49b0aa39552 (diff)
downloadscummvm-rg350-4d79ee16c07e2398e9058fe93947b4704cd6048a.tar.gz
scummvm-rg350-4d79ee16c07e2398e9058fe93947b4704cd6048a.tar.bz2
scummvm-rg350-4d79ee16c07e2398e9058fe93947b4704cd6048a.zip
TITANIC: Add semicolon after CLASSDEF macro usage
Diffstat (limited to 'engines/titanic/game/parrot')
-rw-r--r--engines/titanic/game/parrot/parrot_lobby_controller.h2
-rw-r--r--engines/titanic/game/parrot/parrot_lobby_link_updater.h2
-rw-r--r--engines/titanic/game/parrot/parrot_lobby_object.h2
-rw-r--r--engines/titanic/game/parrot/parrot_lobby_view_object.h2
-rw-r--r--engines/titanic/game/parrot/parrot_loser.h2
-rw-r--r--engines/titanic/game/parrot/parrot_nut_bowl_actor.h2
-rw-r--r--engines/titanic/game/parrot/parrot_nut_eater.h2
-rw-r--r--engines/titanic/game/parrot/parrot_perch_holder.h2
-rw-r--r--engines/titanic/game/parrot/parrot_succubus.h2
-rw-r--r--engines/titanic/game/parrot/parrot_trigger.h2
-rw-r--r--engines/titanic/game/parrot/player_meets_parrot.h2
11 files changed, 11 insertions, 11 deletions
diff --git a/engines/titanic/game/parrot/parrot_lobby_controller.h b/engines/titanic/game/parrot/parrot_lobby_controller.h
index 9f5ddcab75..d2fa4a1801 100644
--- a/engines/titanic/game/parrot/parrot_lobby_controller.h
+++ b/engines/titanic/game/parrot/parrot_lobby_controller.h
@@ -29,7 +29,7 @@ namespace Titanic {
class CParrotLobbyController : public CParrotLobbyObject {
public:
- CLASSDEF
+ CLASSDEF;
/**
* Save the data for the class to file
diff --git a/engines/titanic/game/parrot/parrot_lobby_link_updater.h b/engines/titanic/game/parrot/parrot_lobby_link_updater.h
index a433f0be84..0470a62dee 100644
--- a/engines/titanic/game/parrot/parrot_lobby_link_updater.h
+++ b/engines/titanic/game/parrot/parrot_lobby_link_updater.h
@@ -31,7 +31,7 @@ class CParrotLobbyLinkUpdater : public CParrotLobbyObject {
public:
int _fieldBC;
public:
- CLASSDEF
+ CLASSDEF;
CParrotLobbyLinkUpdater() : CParrotLobbyObject(), _fieldBC(1) {}
/**
diff --git a/engines/titanic/game/parrot/parrot_lobby_object.h b/engines/titanic/game/parrot/parrot_lobby_object.h
index 967ad23fd8..dfb6592325 100644
--- a/engines/titanic/game/parrot/parrot_lobby_object.h
+++ b/engines/titanic/game/parrot/parrot_lobby_object.h
@@ -37,7 +37,7 @@ public:
static void init();
public:
- CLASSDEF
+ CLASSDEF;
/**
* Save the data for the class to file
diff --git a/engines/titanic/game/parrot/parrot_lobby_view_object.h b/engines/titanic/game/parrot/parrot_lobby_view_object.h
index 656924ff9f..3179bb962d 100644
--- a/engines/titanic/game/parrot/parrot_lobby_view_object.h
+++ b/engines/titanic/game/parrot/parrot_lobby_view_object.h
@@ -31,7 +31,7 @@ class CParrotLobbyViewObject : public CParrotLobbyObject {
public:
int _fieldBC;
public:
- CLASSDEF
+ CLASSDEF;
CParrotLobbyViewObject() : CParrotLobbyObject(), _fieldBC(1) {}
/**
diff --git a/engines/titanic/game/parrot/parrot_loser.h b/engines/titanic/game/parrot/parrot_loser.h
index c1e6c9fddd..819fd6614c 100644
--- a/engines/titanic/game/parrot/parrot_loser.h
+++ b/engines/titanic/game/parrot/parrot_loser.h
@@ -29,7 +29,7 @@ namespace Titanic {
class CParrotLoser : public CGameObject {
public:
- CLASSDEF
+ CLASSDEF;
/**
* Save the data for the class to file
diff --git a/engines/titanic/game/parrot/parrot_nut_bowl_actor.h b/engines/titanic/game/parrot/parrot_nut_bowl_actor.h
index 34be83a918..d8395bb65a 100644
--- a/engines/titanic/game/parrot/parrot_nut_bowl_actor.h
+++ b/engines/titanic/game/parrot/parrot_nut_bowl_actor.h
@@ -31,7 +31,7 @@ class CParrotNutBowlActor : public CGameObject {
public:
int _value1, _value2;
public:
- CLASSDEF
+ CLASSDEF;
CParrotNutBowlActor();
/**
diff --git a/engines/titanic/game/parrot/parrot_nut_eater.h b/engines/titanic/game/parrot/parrot_nut_eater.h
index fe0a3aeb0f..5dcb01ca11 100644
--- a/engines/titanic/game/parrot/parrot_nut_eater.h
+++ b/engines/titanic/game/parrot/parrot_nut_eater.h
@@ -35,7 +35,7 @@ public:
int _fieldC8;
int _fieldCC;
public:
- CLASSDEF
+ CLASSDEF;
CParrotNutEater();
/**
diff --git a/engines/titanic/game/parrot/parrot_perch_holder.h b/engines/titanic/game/parrot/parrot_perch_holder.h
index 8c7a441001..ff618f09dc 100644
--- a/engines/titanic/game/parrot/parrot_perch_holder.h
+++ b/engines/titanic/game/parrot/parrot_perch_holder.h
@@ -29,7 +29,7 @@ namespace Titanic {
class CParrotPerchHolder : public CMultiDropTarget {
public:
- CLASSDEF
+ CLASSDEF;
/**
* Save the data for the class to file
diff --git a/engines/titanic/game/parrot/parrot_succubus.h b/engines/titanic/game/parrot/parrot_succubus.h
index 7984cc6a8c..6f5d9e602a 100644
--- a/engines/titanic/game/parrot/parrot_succubus.h
+++ b/engines/titanic/game/parrot/parrot_succubus.h
@@ -35,7 +35,7 @@ public:
int _field1F0;
int _field1F4;
public:
- CLASSDEF
+ CLASSDEF;
CParrotSuccUBus();
/**
diff --git a/engines/titanic/game/parrot/parrot_trigger.h b/engines/titanic/game/parrot/parrot_trigger.h
index f2d1d7e904..28a1663fa8 100644
--- a/engines/titanic/game/parrot/parrot_trigger.h
+++ b/engines/titanic/game/parrot/parrot_trigger.h
@@ -31,7 +31,7 @@ class CParrotTrigger : public CGameObject {
public:
int _value;
public:
- CLASSDEF
+ CLASSDEF;
CParrotTrigger() : CGameObject(), _value(0x446AB) {}
/**
diff --git a/engines/titanic/game/parrot/player_meets_parrot.h b/engines/titanic/game/parrot/player_meets_parrot.h
index 0a720993a5..9cee9ee322 100644
--- a/engines/titanic/game/parrot/player_meets_parrot.h
+++ b/engines/titanic/game/parrot/player_meets_parrot.h
@@ -32,7 +32,7 @@ class CPlayerMeetsParrot : public CGameObject {
protected:
bool EnterRoomMsg(CEnterRoomMsg *msg);
public:
- CLASSDEF
+ CLASSDEF;
/**
* Save the data for the class to file