TUCKER: Made some static data const.

This commit is contained in:
Johannes Schickel 2011-09-08 19:53:35 +02:00
parent 16344ab6a8
commit fdfbf4133e
2 changed files with 2 additions and 2 deletions

View file

@ -340,7 +340,7 @@ const SoundSequenceDataList AnimationSequencePlayer::_soundSeqDataList[] = {
{ 0, 0, 4, 0, 7, _soundDataSeq19_20 }
};
const char *AnimationSequencePlayer::_audioFileNamesTable[] = {
const char *const AnimationSequencePlayer::_audioFileNamesTable[] = {
"demomenu.raw",
"demorolc.raw",
"fx101.wav",

View file

@ -989,7 +989,7 @@ private:
Audio::SoundHandle _musicHandle;
static const SoundSequenceDataList _soundSeqDataList[];
static const char *_audioFileNamesTable[];
static const char *const _audioFileNamesTable[];
};
} // namespace Tucker