aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/sound.h
diff options
context:
space:
mode:
authorKari Salminen2008-04-17 21:05:20 +0000
committerKari Salminen2008-04-17 21:05:20 +0000
commit14918b05d1f932e7870ce6271f5a720eea687939 (patch)
tree210c3a25c69f5255bcbcd992ce148ea26d8ba421 /engines/agi/sound.h
parente08a00fd0eee8a7f30f32078cddc43d515c0cf53 (diff)
downloadscummvm-rg350-14918b05d1f932e7870ce6271f5a720eea687939.tar.gz
scummvm-rg350-14918b05d1f932e7870ce6271f5a720eea687939.tar.bz2
scummvm-rg350-14918b05d1f932e7870ce6271f5a720eea687939.zip
Tiny cleanup: Fix a parameter name discrepancy between IIgsChannelInfo::noteOn-function's declaration and definition introduced in r31550.
svn-id: r31553
Diffstat (limited to 'engines/agi/sound.h')
-rw-r--r--engines/agi/sound.h2
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?