mirror of
https://github.com/libretro/mgba.git
synced 2024-11-27 10:11:00 +00:00
GB Audio: Fix zombie mode bit masking
This commit is contained in:
parent
b6c0d5307f
commit
15d66422a9
2
CHANGES
2
CHANGES
@ -1,4 +1,6 @@
|
|||||||
0.7.0: (Future)
|
0.7.0: (Future)
|
||||||
|
Bugfixes:
|
||||||
|
- GB Audio: Fix zombie mode bit masking
|
||||||
Misc:
|
Misc:
|
||||||
- GBA Timer: Use global cycles for timers
|
- GBA Timer: Use global cycles for timers
|
||||||
|
|
||||||
|
@ -702,6 +702,7 @@ bool _writeEnvelope(struct GBAudioEnvelope* envelope, uint8_t value) {
|
|||||||
if (!envelope->stepTime) {
|
if (!envelope->stepTime) {
|
||||||
// TODO: Improve "zombie" mode
|
// TODO: Improve "zombie" mode
|
||||||
++envelope->currentVolume;
|
++envelope->currentVolume;
|
||||||
|
envelope->currentVolume &= 0xF;
|
||||||
}
|
}
|
||||||
_updateEnvelopeDead(envelope);
|
_updateEnvelopeDead(envelope);
|
||||||
envelope->nextStep = envelope->stepTime;
|
envelope->nextStep = envelope->stepTime;
|
||||||
|
Loading…
Reference in New Issue
Block a user