aboutsummaryrefslogtreecommitdiff
path: root/saga/sound.h
diff options
context:
space:
mode:
authorAndrew Kurushin2005-07-26 19:40:58 +0000
committerAndrew Kurushin2005-07-26 19:40:58 +0000
commitc4f0d024ef22dc760c4ec29eee1f50de523414aa (patch)
tree59b60b883355ee89f1a6452cf186abbe5248c770 /saga/sound.h
parente175e68b992ac355fe2bcaa1eededc1361f11ffc (diff)
downloadscummvm-rg350-c4f0d024ef22dc760c4ec29eee1f50de523414aa.tar.gz
scummvm-rg350-c4f0d024ef22dc760c4ec29eee1f50de523414aa.tar.bz2
scummvm-rg350-c4f0d024ef22dc760c4ec29eee1f50de523414aa.zip
fixed sound in many variation
some version should be tested svn-id: r18585
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;