diff options
| author | Travis Howell | 2009-09-11 09:31:57 +0000 | 
|---|---|---|
| committer | Travis Howell | 2009-09-11 09:31:57 +0000 | 
| commit | eb0b61976dcd71ba9de13d705a945dcbc88de599 (patch) | |
| tree | c02028de8e012b8df5826558f39ae7635793bce0 | |
| parent | 101150832582bba15d463ba27e60cb9f0d65a437 (diff) | |
| download | scummvm-rg350-eb0b61976dcd71ba9de13d705a945dcbc88de599.tar.gz scummvm-rg350-eb0b61976dcd71ba9de13d705a945dcbc88de599.tar.bz2 scummvm-rg350-eb0b61976dcd71ba9de13d705a945dcbc88de599.zip | |
Fix compile of M4 game engine.
svn-id: r44028
| -rw-r--r-- | engines/m4/ws_sequence.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/m4/ws_sequence.cpp b/engines/m4/ws_sequence.cpp index 4c806c9806..cc850b8cd7 100644 --- a/engines/m4/ws_sequence.cpp +++ b/engines/m4/ws_sequence.cpp @@ -70,8 +70,8 @@ static const long sinCosTable[320] = {  	64276,	64571,	64826,	65043,	65220,	65358,	65457,	65516  }; -long *sinTable = &(sinCosTable[0]); -long *cosTable = &(sinCosTable[64]); +const long *sinTable = &(sinCosTable[0]); +const long *cosTable = &(sinCosTable[64]);  // FIXME: Tables | 
