aboutsummaryrefslogtreecommitdiff
path: root/scumm/player_v2.h
diff options
context:
space:
mode:
authorChris Apers2003-12-18 11:47:58 +0000
committerChris Apers2003-12-18 11:47:58 +0000
commit3f1d66cf11f4f369e007af95a9eb5aabf07b3939 (patch)
tree32d961c58df32e8b667c05589cbaead0ad579e64 /scumm/player_v2.h
parentffc068734d5df485ef63d6f81cab467921d2bd26 (diff)
downloadscummvm-rg350-3f1d66cf11f4f369e007af95a9eb5aabf07b3939.tar.gz
scummvm-rg350-3f1d66cf11f4f369e007af95a9eb5aabf07b3939.tar.bz2
scummvm-rg350-3f1d66cf11f4f369e007af95a9eb5aabf07b3939.zip
PalmOS sound API cannot access globals or functions out of the first segment
svn-id: r11740
Diffstat (limited to 'scumm/player_v2.h')
-rw-r--r--scumm/player_v2.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/scumm/player_v2.h b/scumm/player_v2.h
index 8e47122106..f3a2ba98b9 100644
--- a/scumm/player_v2.h
+++ b/scumm/player_v2.h
@@ -84,6 +84,18 @@ public:
virtual int getMusicTimer() const;
virtual int getSoundStatus(int sound) const;
+#ifdef __PALM_OS__
+private:
+ const uint8 *note_lengths;
+ const uint16 *hull_offsets;
+ const int16 *hulls;
+ const uint16 *freqmod_lengths;
+ const uint16 *freqmod_offsets;
+ const int8 *freqmod_table;
+ const uint16 *spk_freq_table;
+ const uint16 *pcjr_freq_table;
+#endif
+
protected:
bool _isV3Game;
SoundMixer *_mixer;