aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
authorMax Horn2004-03-16 23:51:41 +0000
committerMax Horn2004-03-16 23:51:41 +0000
commitfd52b3a3c05c61dadaf2ed0b5d109e58419d4436 (patch)
tree1e91398ae8085d337f4adfbfff2895fe374d416b /scumm/actor.cpp
parent2705815d1d8fc12b7960f7070682f47404870951 (diff)
downloadscummvm-rg350-fd52b3a3c05c61dadaf2ed0b5d109e58419d4436.tar.gz
scummvm-rg350-fd52b3a3c05c61dadaf2ed0b5d109e58419d4436.tar.bz2
scummvm-rg350-fd52b3a3c05c61dadaf2ed0b5d109e58419d4436.zip
Patch #917503: Remove stray semicolons
svn-id: r13319
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 0ee27e40fd..40e79714c2 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -794,14 +794,14 @@ int ScummEngine::getTalkingActor() {
return _V1_talkingActor;
else
return VAR(VAR_TALK_ACTOR);
-};
+}
void ScummEngine::setTalkingActor(int value) {
if (_gameId == GID_MANIAC && _version == 1)
_V1_talkingActor = value;
else
VAR(VAR_TALK_ACTOR) = value;
-};
+}
void ScummEngine::showActors() {
int i;