diff options
author | Sven Hesse | 2008-06-26 19:56:18 +0000 |
---|---|---|
committer | Sven Hesse | 2008-06-26 19:56:18 +0000 |
commit | 41dfebc5322a21192b29817662dff290410680b6 (patch) | |
tree | d1f70077679d170b0541086888fff972189f73a7 | |
parent | 7b30081be292d793914e44939923a67c2745b914 (diff) | |
download | scummvm-rg350-41dfebc5322a21192b29817662dff290410680b6.tar.gz scummvm-rg350-41dfebc5322a21192b29817662dff290410680b6.tar.bz2 scummvm-rg350-41dfebc5322a21192b29817662dff290410680b6.zip |
Fixing compilation for me. There are still lots of "cast casts away constness" warnings, though
svn-id: r32809
-rw-r--r-- | engines/kyra/sound_towns.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/sound_towns.cpp b/engines/kyra/sound_towns.cpp index a6457f509b..3aeec49fdc 100644 --- a/engines/kyra/sound_towns.cpp +++ b/engines/kyra/sound_towns.cpp @@ -1090,10 +1090,10 @@ void Towns_EuphonyTrackQueue::initDriver() { class TownsPC98_OpnOperator { public: - TownsPC98_OpnOperator::TownsPC98_OpnOperator(double rate, uint8 id, const uint8 *rateTable, + TownsPC98_OpnOperator(double rate, uint8 id, const uint8 *rateTable, const uint8 *shiftTable, const uint8 *attackDecayTable, const uint32 *frqTable, const uint32 *sineTable, const int32 *tlevelOut, const int32 *detuneTable); - TownsPC98_OpnOperator::~TownsPC98_OpnOperator() {} + ~TownsPC98_OpnOperator() {} void keyOn(); void keyOff(); |