aboutsummaryrefslogtreecommitdiff
path: root/queen/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'queen/sound.h')
-rw-r--r--queen/sound.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/queen/sound.h b/queen/sound.h
index 9b8e9f7f40..33c9398fb2 100644
--- a/queen/sound.h
+++ b/queen/sound.h
@@ -78,12 +78,21 @@ public:
void saveState(byte *&ptr);
void loadState(uint32 ver, byte *&ptr);
+#ifndef __PALM_OS__
static const songData _songDemo[];
static const songData _song[];
static const tuneData _tuneDemo[];
static const tuneData _tune[];
static const char *_sfxName[];
static const int16 _jungleList[];
+#else
+ static const songData *_songDemo;
+ static const songData *_song;
+ static const tuneData *_tuneDemo;
+ static const tuneData *_tune;
+ static const char *_sfxName;
+ static const int16 *_jungleList;
+#endif
protected:
void waitFinished(bool isSpeech);