diff options
author | Max Horn | 2010-10-30 00:34:41 +0000 |
---|---|---|
committer | Max Horn | 2010-10-30 00:34:41 +0000 |
commit | a487da3c19e69400a5f89ecb2935a5a6b572817c (patch) | |
tree | 50b0d04f1e90dea6422676d452ebbefaee568ad0 /engines | |
parent | 36d17c74d127a7718bb3e713bd89fccd91017e97 (diff) | |
download | scummvm-rg350-a487da3c19e69400a5f89ecb2935a5a6b572817c.tar.gz scummvm-rg350-a487da3c19e69400a5f89ecb2935a5a6b572817c.tar.bz2 scummvm-rg350-a487da3c19e69400a5f89ecb2935a5a6b572817c.zip |
TINSEL: Remove redundant if()
svn-id: r53936
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tinsel/tinlib.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/tinsel/tinlib.cpp b/engines/tinsel/tinlib.cpp index a1c39bffde..dea60802d1 100644 --- a/engines/tinsel/tinlib.cpp +++ b/engines/tinsel/tinlib.cpp @@ -4945,9 +4945,6 @@ int CallLibraryRoutine(CORO_PARAM, int operand, int32 *pp, const INT_CONTEXT *pi else { Play(coroParam, pp[0], pp[1], pp[2], pp[3], pic->myEscape, false, pic->event, pic->hPoly, pic->idActor); - - if (coroParam) - return 0; } return -4; |