aboutsummaryrefslogtreecommitdiff
path: root/saga/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'saga/sound.h')
-rw-r--r--saga/sound.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/saga/sound.h b/saga/sound.h
index 6a95e0535a..33c22dace3 100644
--- a/saga/sound.h
+++ b/saga/sound.h
@@ -39,10 +39,10 @@ struct SoundBuffer {
int sampleBits;
bool stereo;
bool isSigned;
-
+
byte *buffer;
size_t size;
- //big endianess flag!!!
+ bool isBigEndian;
};
class Sound {
@@ -63,7 +63,7 @@ public:
private:
- void playSoundBuffer(Audio::SoundHandle *handle, SoundBuffer &buffer, int volume, bool loop, bool forceBigEndian);
+ void playSoundBuffer(Audio::SoundHandle *handle, SoundBuffer &buffer, int volume, bool loop);
int _enabled;
SagaEngine *_vm;