diff options
author | Max Horn | 2005-01-07 14:42:05 +0000 |
---|---|---|
committer | Max Horn | 2005-01-07 14:42:05 +0000 |
commit | b4d547c736d6c8718cdd1bc36aa4a2fc083b6c52 (patch) | |
tree | 238afb83668005527583d0c7afda021f1c337caf /scumm | |
parent | 50d64c1329b4b418d8be1d05a846407861dc4e12 (diff) | |
download | scummvm-rg350-b4d547c736d6c8718cdd1bc36aa4a2fc083b6c52.tar.gz scummvm-rg350-b4d547c736d6c8718cdd1bc36aa4a2fc083b6c52.tar.bz2 scummvm-rg350-b4d547c736d6c8718cdd1bc36aa4a2fc083b6c52.zip |
cleanup
svn-id: r16476
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/imuse.cpp | 2 | ||||
-rw-r--r-- | scumm/imuse_internal.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 309ccdc2c3..3a3dc8bae5 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -715,7 +715,7 @@ int32 IMuseInternal::doCommand (int numargs, int a[]) { return getSoundStatus(a[1]); case 14: // Sam and Max: Parameter fade - player = this->findActivePlayer(a[1]); + player = findActivePlayer(a[1]); if (player) return player->addParameterFader(a[3], a[4], a[5]); return -1; diff --git a/scumm/imuse_internal.h b/scumm/imuse_internal.h index 43efb4590a..04414ead08 100644 --- a/scumm/imuse_internal.h +++ b/scumm/imuse_internal.h @@ -35,7 +35,6 @@ namespace Scumm { // the most common iMuse diagnostic messages. // #define IMUSE_DEBUG -struct HookDatas; struct ParameterFader; struct DeferredCommand; struct ImTrigger; |