diff options
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; |