diff options
author | Lars Persson | 2008-08-19 09:26:41 +0000 |
---|---|---|
committer | Lars Persson | 2008-08-19 09:26:41 +0000 |
commit | 983e07ff6e452d1fcf83fa8f099d36a86d8d3f30 (patch) | |
tree | 2dac2ac503e92b84226d95ec21167b5ad13e149a | |
parent | a045b77b5973a9d05bab0a431ad755d855746042 (diff) | |
download | scummvm-rg350-983e07ff6e452d1fcf83fa8f099d36a86d8d3f30.tar.gz scummvm-rg350-983e07ff6e452d1fcf83fa8f099d36a86d8d3f30.tar.bz2 scummvm-rg350-983e07ff6e452d1fcf83fa8f099d36a86d8d3f30.zip |
Use the correct and specified datatype int32 instead of only int.
svn-id: r34027
-rw-r--r-- | engines/kyra/sound_towns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sound_towns.cpp b/engines/kyra/sound_towns.cpp index bc5a3329c7..355dfc724a 100644 --- a/engines/kyra/sound_towns.cpp +++ b/engines/kyra/sound_towns.cpp @@ -1358,7 +1358,7 @@ public: bool _enableRight; bool _updateEnvelopeParameters; const uint8 _idFlag; - int _feedbuf[3]; + int32 _feedbuf[3]; protected: void setupPitchWheel(); |