diff options
| author | D G Turner | 2012-11-23 19:01:38 +0000 | 
|---|---|---|
| committer | D G Turner | 2012-11-23 19:01:38 +0000 | 
| commit | d654057a98290dc6a53c1b1d87006e20222f65ce (patch) | |
| tree | d2fd8f6ff89c0d1235a5ce3f16473dde554cb6c4 | |
| parent | 8a8ab23c03e2f69bf1107b009f5a9bee6035e81f (diff) | |
| download | scummvm-rg350-d654057a98290dc6a53c1b1d87006e20222f65ce.tar.gz scummvm-rg350-d654057a98290dc6a53c1b1d87006e20222f65ce.tar.bz2 scummvm-rg350-d654057a98290dc6a53c1b1d87006e20222f65ce.zip | |
AUDIO: Fix spurious compiler warnings about use-before-set variable.
| -rw-r--r-- | audio/softsynth/adlib.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/audio/softsynth/adlib.cpp b/audio/softsynth/adlib.cpp index 6000a41a72..657eb7846f 100644 --- a/audio/softsynth/adlib.cpp +++ b/audio/softsynth/adlib.cpp @@ -1988,7 +1988,7 @@ void MidiDriver_ADLIB::mcKeyOn(AdLibVoice *voice, const AdLibInstrument *instr,  	AdLibPart *part = voice->_part;  	byte vol1, vol2;  #ifdef ENABLE_OPL3 -	byte secVol1, secVol2; +	byte secVol1 = 0, secVol2 = 0;  #endif  	voice->_twoChan = instr->feedback & 1; | 
