diff options
author | Paul Gilbert | 2011-10-17 23:08:20 +1100 |
---|---|---|
committer | Paul Gilbert | 2011-10-17 23:08:20 +1100 |
commit | ca31591384a3a8a9f3254b7ccb3032a40bb8a17d (patch) | |
tree | 5ae9fa10008ed34d8f530441b42fac93371f1212 | |
parent | dbff0afa37708a4719c6f309ac5d5a57efbb179d (diff) | |
download | scummvm-rg350-ca31591384a3a8a9f3254b7ccb3032a40bb8a17d.tar.gz scummvm-rg350-ca31591384a3a8a9f3254b7ccb3032a40bb8a17d.tar.bz2 scummvm-rg350-ca31591384a3a8a9f3254b7ccb3032a40bb8a17d.zip |
TSAGE: Corrected signature of ASound::play method
-rw-r--r-- | engines/tsage/sound.cpp | 2 | ||||
-rw-r--r-- | engines/tsage/sound.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/tsage/sound.cpp b/engines/tsage/sound.cpp index 71e69283e7..b61e63236b 100644 --- a/engines/tsage/sound.cpp +++ b/engines/tsage/sound.cpp @@ -2432,7 +2432,7 @@ void ASound::dispatch() { } } -void ASound::play(int soundNum, Action *action, int volume) { +void ASound::play(int soundNum, EventHandler *action, int volume) { _action = action; _cueValue = 0; diff --git a/engines/tsage/sound.h b/engines/tsage/sound.h index 010394a42e..2c5d2ac951 100644 --- a/engines/tsage/sound.h +++ b/engines/tsage/sound.h @@ -373,7 +373,7 @@ public: virtual void synchronize(Serializer &s); virtual void dispatch(); - void play(int soundNum, Action *action = NULL, int volume = 127); + void play(int soundNum, EventHandler *action = NULL, int volume = 127); void stop(); void prime(int soundNum, Action *action = NULL); void unPrime(); |