diff options
-rw-r--r-- | engines/agi/sound.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/sound.h b/engines/agi/sound.h index faf8c11131..6b268edb92 100644 --- a/engines/agi/sound.h +++ b/engines/agi/sound.h @@ -215,7 +215,7 @@ struct IIgsChannelInfo { void rewind(); ///< Rewinds the sound playing on this channel to its start void setChannelVolume(uint8 volume); ///< Sets the channel volume void setInstrument(const IIgsInstrumentHeader *instrument, const int8 *sample); ///< Sets the instrument to be used on this channel - void noteOn(uint8 note, uint8 velocity); ///< Starts playing a note on this channel + void noteOn(uint8 noteParam, uint8 velocity); ///< Starts playing a note on this channel void noteOff(uint8 velocity); ///< Releases the note on this channel void stop(); ///< Stops the note playing on this channel instantly bool playing(); ///< Is there a note playing on this channel? |