aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/sound.cpp')
-rw-r--r--engines/tony/sound.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tony/sound.cpp b/engines/tony/sound.cpp
index 53d3b962d2..61d225b88b 100644
--- a/engines/tony/sound.cpp
+++ b/engines/tony/sound.cpp
@@ -113,8 +113,8 @@ public:
class CODECADPCM : public CODECRAW {
protected:
byte *lpTemp;
- static int indexTable[16];
- static int stepSizeTable[89];
+ static const int indexTable[16];
+ static const int stepSizeTable[89];
public:
CODECADPCM(bool bLoop = true, byte *lpTempBuffer = NULL);
@@ -298,12 +298,12 @@ uint32 CODECRAW::Decompress(Common::File &fp, void *buf, uint32 dwSize) {
* Metodi per CODECADPCM
\****************************************************************************/
-int CODECADPCM::indexTable[16] = {
+const int CODECADPCM::indexTable[16] = {
-1, -1, -1, -1, 2, 4, 6, 8,
-1, -1, -1, -1, 2, 4, 6, 8,
};
-int CODECADPCM::stepSizeTable[89] = {
+const int CODECADPCM::stepSizeTable[89] = {
7, 8, 9, 10, 11, 12, 13, 14, 16, 17,
19, 21, 23, 25, 28, 31, 34, 37, 41, 45,
50, 55, 60, 66, 73, 80, 88, 97, 107, 118,