aboutsummaryrefslogtreecommitdiff
path: root/saga/sound.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2004-10-27 21:32:28 +0000
committerPaweł Kołodziejski2004-10-27 21:32:28 +0000
commitc7e5ab1f2d0f103de25da3c57cd30d5ee3ec7312 (patch)
tree89634611acbd66a70597ea99b9b7d8c27a254c02 /saga/sound.h
parent117952430d8a64692ae01f122916f1ac52f7ca0f (diff)
downloadscummvm-rg350-c7e5ab1f2d0f103de25da3c57cd30d5ee3ec7312.tar.gz
scummvm-rg350-c7e5ab1f2d0f103de25da3c57cd30d5ee3ec7312.tar.bz2
scummvm-rg350-c7e5ab1f2d0f103de25da3c57cd30d5ee3ec7312.zip
removed R_ prefix with few r_ too
svn-id: r15690
Diffstat (limited to 'saga/sound.h')
-rw-r--r--saga/sound.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/saga/sound.h b/saga/sound.h
index bccb872735..46d05f5ede 100644
--- a/saga/sound.h
+++ b/saga/sound.h
@@ -32,7 +32,7 @@
namespace Saga {
-struct R_SOUNDBUFFER {
+struct SOUNDBUFFER {
uint16 s_freq;
int s_samplebits;
int s_stereo;
@@ -48,19 +48,19 @@ public:
Sound(SagaEngine *vm, SoundMixer *mixer, int enabled);
~Sound();
- int playSound(R_SOUNDBUFFER *buf, int volume);
+ int playSound(SOUNDBUFFER *buf, int volume);
int pauseSound();
int resumeSound();
int stopSound();
- int playVoice(R_SOUNDBUFFER *buf);
+ int playVoice(SOUNDBUFFER *buf);
int pauseVoice();
int resumeVoice();
int stopVoice();
private:
- int playSoundBuffer(PlayingSoundHandle *handle, R_SOUNDBUFFER *buf, int volume, bool loop);
+ int playSoundBuffer(PlayingSoundHandle *handle, SOUNDBUFFER *buf, int volume, bool loop);
int _soundInitialized;
int _enabled;