mirror of
https://github.com/libretro/Mesen.git
synced 2025-03-04 22:27:10 +00:00
Fixed works_immediately APU test - _bitsRemaining ended up wrapping to 255 because it was being initialized to 0.
This commit is contained in:
parent
2b87db00ed
commit
61ac52d82e
@ -29,7 +29,7 @@ void DeltaModulationChannel::Reset(bool softReset)
|
||||
_bufferEmpty = true;
|
||||
|
||||
_shiftRegister = 0;
|
||||
_bitsRemaining = 0;
|
||||
_bitsRemaining = 8;
|
||||
_silenceFlag = true;
|
||||
_needToRun = false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user