aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2005-01-07 14:42:05 +0000
committerMax Horn2005-01-07 14:42:05 +0000
commitb4d547c736d6c8718cdd1bc36aa4a2fc083b6c52 (patch)
tree238afb83668005527583d0c7afda021f1c337caf /scumm
parent50d64c1329b4b418d8be1d05a846407861dc4e12 (diff)
downloadscummvm-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.cpp2
-rw-r--r--scumm/imuse_internal.h1
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;