mirror of https://github.com/snes9xgit/snes9x.git
Fix missing parenthesis.
This commit is contained in:
parent
cf3feb24ac
commit
3cfe7b31e3
|
@ -76,7 +76,7 @@ bool CWaveOut::SetupSound()
|
|||
void CWaveOut::SetVolume(double volume)
|
||||
{
|
||||
uint32 volumeout = volume * 0xffff;
|
||||
waveOutSetVolume(hWaveOut, volumeout + (volumeout << 16);
|
||||
waveOutSetVolume(hWaveOut, volumeout + (volumeout << 16));
|
||||
}
|
||||
|
||||
void CWaveOut::BeginPlayback()
|
||||
|
|
Loading…
Reference in New Issue