aboutsummaryrefslogtreecommitdiff
path: root/engines/pink/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/pink/sound.h')
-rw-r--r--engines/pink/sound.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/pink/sound.h b/engines/pink/sound.h
index f6207f49e9..9d7007419f 100644
--- a/engines/pink/sound.h
+++ b/engines/pink/sound.h
@@ -38,24 +38,24 @@ namespace Pink {
class Sound {
public:
- Sound(Audio::Mixer *mixer, Common::SafeSeekableSubReadStream *stream);
- ~Sound();
+ Sound(Audio::Mixer *mixer, Common::SafeSeekableSubReadStream *stream);
+ ~Sound();
- void play(Audio::Mixer::SoundType type, int volume, bool isLoop);
+ void play(Audio::Mixer::SoundType type, int volume, bool isLoop);
- bool isPlaying();
+ bool isPlaying();
- void pause();
- void resume();
- void stop();
+ void pause();
+ void resume();
+ void stop();
- uint32 getCurrentSample();
- void setBalance(int8 balance);
+ uint32 getCurrentSample();
+ void setBalance(int8 balance);
private:
- Audio::Mixer *_mixer;
- Audio::SoundHandle _handle;
- Common::SafeSeekableSubReadStream *_fileStream;
+ Audio::Mixer *_mixer;
+ Audio::SoundHandle _handle;
+ Common::SafeSeekableSubReadStream *_fileStream;
};
} // End of namespace Pink