diff options
Diffstat (limited to 'engines/lastexpress/game/sound.h')
-rw-r--r-- | engines/lastexpress/game/sound.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/lastexpress/game/sound.h b/engines/lastexpress/game/sound.h index 08ec767022..ddafc21829 100644 --- a/engines/lastexpress/game/sound.h +++ b/engines/lastexpress/game/sound.h @@ -347,8 +347,9 @@ private: // Looping sound void playLoopingSound(); - // Sound cache - Common::List<SoundEntry *> _cache; + // Sound entries + Common::List<SoundEntry *> _soundList; ///< List of all sound entries + Common::List<SoundEntry *> _soundCache; ///< List of entries with a data buffer void *_soundCacheData; SoundEntry *getEntry(EntityIndex index); |