diff options
author | Jonathan Gray | 2003-07-12 15:38:27 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-07-12 15:38:27 +0000 |
commit | fcc52b238bdf51969997c5ff4f93fbdfda8e2f52 (patch) | |
tree | 93aeea9d4db8cb198b192eea410d383643671a80 | |
parent | d50009b7c7191b82c32a8dde870e4edc6aac143e (diff) | |
download | scummvm-rg350-fcc52b238bdf51969997c5ff4f93fbdfda8e2f52.tar.gz scummvm-rg350-fcc52b238bdf51969997c5ff4f93fbdfda8e2f52.tar.bz2 scummvm-rg350-fcc52b238bdf51969997c5ff4f93fbdfda8e2f52.zip |
remove unused variable which is also incorrectly cast...
svn-id: r8948
-rw-r--r-- | scumm/sound.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 44e693a037..e957405b21 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -423,7 +423,6 @@ void Sound::playSound(int soundID) { case 1: { // Music (Euphony format) int numInstruments = *(ptr + 0x14); int tuneSize = 0, tempo = 0; - int startPtr = ptr; ptr += (0x16 + (numInstruments * 48)); // Skip instrument definitions ptr += (32*4); // Skip preset values (mute, channel, volume, transpose) |