aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorChris Apers2004-04-16 12:47:55 +0000
committerChris Apers2004-04-16 12:47:55 +0000
commit5af7979f0bf497fc1c93fdb581a5b90c2eb5857f (patch)
tree35b1c4807e06e10ec23e78a72fe2fa12d20e8425 /scumm
parent9c55e7247c34419ab34c95225cc38553d87d5bef (diff)
downloadscummvm-rg350-5af7979f0bf497fc1c93fdb581a5b90c2eb5857f.tar.gz
scummvm-rg350-5af7979f0bf497fc1c93fdb581a5b90c2eb5857f.tar.bz2
scummvm-rg350-5af7979f0bf497fc1c93fdb581a5b90c2eb5857f.zip
Fixed illegal access to protected/private member on PalmOS (??)
svn-id: r13588
Diffstat (limited to 'scumm')
-rw-r--r--scumm/sound.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/scumm/sound.h b/scumm/sound.h
index 44f6f933b0..b5cd51bfba 100644
--- a/scumm/sound.h
+++ b/scumm/sound.h
@@ -37,7 +37,11 @@ enum {
};
class Sound {
+#ifdef __PALM_OS__
+public:
+#else
protected:
+#endif
enum SoundMode {
kVOCMode,
kMP3Mode,
@@ -45,6 +49,9 @@ protected:
kFlacMode
};
+#ifdef __PALM_OS__
+protected:
+#endif
ScummEngine *_vm;
int16 _soundQuePos, _soundQue[0x100];
@@ -109,4 +116,3 @@ protected:
} // End of namespace Scumm
#endif
-