aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound/softseq/pcjr.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sound/softseq/pcjr.h')
-rw-r--r--engines/sci/sound/softseq/pcjr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sound/softseq/pcjr.h b/engines/sci/sound/softseq/pcjr.h
index e8b0b9f553..2693706956 100644
--- a/engines/sci/sound/softseq/pcjr.h
+++ b/engines/sci/sound/softseq/pcjr.h
@@ -68,7 +68,7 @@ class MidiPlayer_PCJr : public MidiPlayer {
public:
MidiPlayer_PCJr() { _driver = new MidiDriver_PCJr(g_system->getMixer()); }
int open(ResourceManager *resMan) { return static_cast<MidiDriver_PCJr *>(_driver)->open(getPolyphony()); }
- int getPlayMask(SciVersion soundVersion);
+ byte getPlayId(SciVersion soundVersion);
int getPolyphony() const { return 3; }
bool hasRhythmChannel() const { return false; }
void setVolume(byte volume) { static_cast<MidiDriver_PCJr *>(_driver)->_global_volume = volume; }
@@ -76,7 +76,7 @@ public:
class MidiPlayer_PCSpeaker : public MidiPlayer_PCJr {
public:
- int getPlayMask(SciVersion soundVersion);
+ byte getPlayId(SciVersion soundVersion);
int getPolyphony() const { return 1; }
};