diff options
Diffstat (limited to 'engines/saga/sound.h')
-rw-r--r-- | engines/saga/sound.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/engines/saga/sound.h b/engines/saga/sound.h index b61cbbbe90..0aeb54a55f 100644 --- a/engines/saga/sound.h +++ b/engines/saga/sound.h @@ -44,17 +44,13 @@ enum SOUND_FLAGS { struct SoundBuffer { uint16 frequency; - int sampleBits; - bool stereo; - bool isSigned; bool isCompressed; + byte flags; byte *buffer; size_t size; size_t originalSize; - bool isBigEndian; GameSoundTypes soundType; - Common::File *soundFile; size_t fileOffset; }; |