diff options
| author | Strangerke | 2014-03-16 13:01:31 +0100 | 
|---|---|---|
| committer | Strangerke | 2014-03-16 13:01:31 +0100 | 
| commit | 8f6971ae61559cefae92efc6feca4a4373a35b55 (patch) | |
| tree | 376327869db814318eee5f3011cfa59c29f16ac2 | |
| parent | 5cb9a0422174b9aa1df38519fb10b6d77f523342 (diff) | |
| download | scummvm-rg350-8f6971ae61559cefae92efc6feca4a4373a35b55.tar.gz scummvm-rg350-8f6971ae61559cefae92efc6feca4a4373a35b55.tar.bz2 scummvm-rg350-8f6971ae61559cefae92efc6feca4a4373a35b55.zip | |
TSAGE: Remove useless variable in Voice structure entry Type 0
| -rw-r--r-- | engines/tsage/sound.cpp | 1 | ||||
| -rw-r--r-- | engines/tsage/sound.h | 1 | 
2 files changed, 0 insertions, 2 deletions
| diff --git a/engines/tsage/sound.cpp b/engines/tsage/sound.cpp index 057319c5d3..c5c38505a7 100644 --- a/engines/tsage/sound.cpp +++ b/engines/tsage/sound.cpp @@ -778,7 +778,6 @@ void SoundManager::sfRethinkVoiceTypes() {  				vte._sound3 = vte._sound;  				vte._channelNum3 = vte._channelNum;  				vte._priority3 = vte._priority; -				vte._field1A = vte._fieldA;  				vte._sound = NULL;  				vte._channelNum = 0;  				vte._priority = 0; diff --git a/engines/tsage/sound.h b/engines/tsage/sound.h index 14bb7c61ac..49558b4bca 100644 --- a/engines/tsage/sound.h +++ b/engines/tsage/sound.h @@ -126,7 +126,6 @@ struct VoiceStructEntryType0 {  	Sound *_sound3;  	int _channelNum3;  	int _priority3; -	int _field1A;  };  struct VoiceStructEntryType1 { | 
