aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/sounds.h
diff options
context:
space:
mode:
authorStrangerke2016-09-12 22:36:17 +0200
committerStrangerke2016-09-12 22:37:54 +0200
commitedf6e4f2d97794adf2af246c5577d46b1055472d (patch)
treefd302da6c21dc8a52cc98717944642287e122d39 /engines/dm/sounds.h
parent4e28542029792a495a4420e5feda6030c67365da (diff)
downloadscummvm-rg350-edf6e4f2d97794adf2af246c5577d46b1055472d.tar.gz
scummvm-rg350-edf6e4f2d97794adf2af246c5577d46b1055472d.tar.bz2
scummvm-rg350-edf6e4f2d97794adf2af246c5577d46b1055472d.zip
DM: Enforce the use of SoundMode
Diffstat (limited to 'engines/dm/sounds.h')
-rw-r--r--engines/dm/sounds.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/dm/sounds.h b/engines/dm/sounds.h
index fc9561a0c8..92b9340dbd 100644
--- a/engines/dm/sounds.h
+++ b/engines/dm/sounds.h
@@ -77,8 +77,8 @@ public:
Common::Queue<PendingSound> _pendingSounds;
virtual void loadSounds(); // @ F0503_SOUND_LoadAll
- virtual void requestPlay(uint16 P0088_ui_SoundIndex, int16 P0089_i_MapX, int16 P0090_i_MapY, uint16 P0091_ui_Mode); // @ F0064_SOUND_RequestPlay_CPSD
- virtual void play(uint16 P0921_ui_SoundIndex, uint16 P0085_i_Period, uint8 leftVol, uint8 rightVol); // @ F0060_SOUND_Play
+ virtual void requestPlay(uint16 soundIndex, int16 mapX, int16 mapY, SoundMode soundMode); // @ F0064_SOUND_RequestPlay_CPSD
+ virtual void play(uint16 soundIndex, uint16 period, uint8 leftVolume, uint8 rightVolume); // @ F0060_SOUND_Play
void playPendingSound(); // @ F0065_SOUND_PlayPendingSound_CPSD
bool soundGetVolume(int16 mapX, int16 mapY, uint8 *leftVolume, uint8 *rightVolume); // @ F0505_SOUND_GetVolume
@@ -92,8 +92,8 @@ class SoundMan_Atari: public SoundMan {
SoundMan_Atari(DMEngine *vm): SoundMan(vm) {};
public:
void loadSounds() override {} // @ F0503_SOUND_LoadAll
- void requestPlay(uint16 P0088_ui_SoundIndex, int16 P0089_i_MapX, int16 P0090_i_MapY, uint16 P0091_ui_Mode) override {} // @ F0064_SOUND_RequestPlay_CPSD
- void play(uint16 P0921_ui_SoundIndex, uint16 P0085_i_Period, uint8 leftVol, uint8 rightVol) override {} // @ F0060_SOUND_Play
+ void requestPlay(uint16 soundIndex, int16 mapX, int16 mapY, SoundMode soundMode) override {} // @ F0064_SOUND_RequestPlay_CPSD
+ void play(uint16 soundIndex, uint16 period, uint8 leftVolume, uint8 rightVolume) override {} // @ F0060_SOUND_Play
};
}