aboutsummaryrefslogtreecommitdiff
path: root/kyra/sound.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /kyra/sound.h
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'kyra/sound.h')
-rw-r--r--kyra/sound.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kyra/sound.h b/kyra/sound.h
index edb1aaf68a..cf262515cd 100644
--- a/kyra/sound.h
+++ b/kyra/sound.h
@@ -30,21 +30,21 @@
namespace Kyra {
class MusicPlayer : public MidiDriver {
-
+
public:
-
+
MusicPlayer(MidiDriver* driver, KyraEngine* engine);
~MusicPlayer();
-
+
void setVolume(int volume);
int getVolume() { return _volume; }
-
+
void hasNativeMT32(bool nativeMT32) { _nativeMT32 = nativeMT32; }
void playMusic(const char* file);
void playMusic(uint8* data, uint32 size);
void stopMusic();
-
+
void playTrack(uint8 track);
void setPassThrough(bool b) { _passThrough = b; }
@@ -60,11 +60,11 @@ namespace Kyra {
//Channel allocation functions
MidiChannel *allocateChannel() { return 0; }
MidiChannel *getPercussionChannel() { return 0; }
-
+
protected:
-
+
static void onTimer(void *data);
-
+
MidiChannel* _channel[16];
uint8 _channelVolume[16];
MidiDriver* _driver;