mirror of
https://github.com/SourMesen/Mesen.git
synced 2025-04-02 10:52:48 -04: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
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ void DeltaModulationChannel::Reset(bool softReset)
|
|||
_bufferEmpty = true;
|
||||
|
||||
_shiftRegister = 0;
|
||||
_bitsRemaining = 0;
|
||||
_bitsRemaining = 8;
|
||||
_silenceFlag = true;
|
||||
_needToRun = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue