diff options
| author | Torbjörn Andersson | 2009-08-15 14:13:48 +0000 |
|---|---|---|
| committer | Torbjörn Andersson | 2009-08-15 14:13:48 +0000 |
| commit | 762d2dc03a7ae28dc49ad4e13720c4071cb6bae5 (patch) | |
| tree | 3e55a7fe2c9ba84c9f2cb988871278de73a1ba19 /engines/tinsel | |
| parent | 17e7f46501e2f133088b5c9ba1fd771ab79b4ba0 (diff) | |
| download | scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.tar.gz scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.tar.bz2 scummvm-rg350-762d2dc03a7ae28dc49ad4e13720c4071cb6bae5.zip | |
Removed unnecessary semi-colons.
svn-id: r43409
Diffstat (limited to 'engines/tinsel')
| -rw-r--r-- | engines/tinsel/actors.cpp | 2 | ||||
| -rw-r--r-- | engines/tinsel/tinlib.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/tinsel/actors.cpp b/engines/tinsel/actors.cpp index e9d0c9f79f..15211c60aa 100644 --- a/engines/tinsel/actors.cpp +++ b/engines/tinsel/actors.cpp @@ -1185,7 +1185,7 @@ SCNHANDLE GetActorTalkFilm(int ano) { void SetActorTalking(int ano, bool tf) { assert(ano > 0 && ano <= NumActors); // illegal actor number - actorInfo[ano - 1].bTalking = tf;; + actorInfo[ano - 1].bTalking = tf; } bool ActorIsTalking(int ano) { diff --git a/engines/tinsel/tinlib.cpp b/engines/tinsel/tinlib.cpp index 957c4f7626..b97f8841ef 100644 --- a/engines/tinsel/tinlib.cpp +++ b/engines/tinsel/tinlib.cpp @@ -359,7 +359,7 @@ typedef SCROLL_MONITOR *PSCROLL_MONITOR; */ static void ScrollMonitorProcess(CORO_PARAM, const void *param) { int Loffset, Toffset; - const SCROLL_MONITOR *psm = (const SCROLL_MONITOR *)param;; + const SCROLL_MONITOR *psm = (const SCROLL_MONITOR *)param; // COROUTINE CORO_BEGIN_CONTEXT; |
