From c7e5ab1f2d0f103de25da3c57cd30d5ee3ec7312 Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Wed, 27 Oct 2004 21:32:28 +0000 Subject: removed R_ prefix with few r_ too svn-id: r15690 --- saga/sound.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'saga/sound.h') 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; -- cgit v1.2.3