diff options
| author | sik | 2017-07-23 03:20:35 -0300 |
|---|---|---|
| committer | sik | 2017-07-23 03:20:35 -0300 |
| commit | 3aacf3d2cedfdeca49ceb57533389870bfc688a9 (patch) | |
| tree | a46d166fa9270700e8e159ca9ae455ac24472771 /src-z80/player/psg.z80 | |
| parent | a679ba38190bfed6ae150a12e819ad7527c495d1 (diff) | |
Now with pausing and other niceties
Diffstat (limited to 'src-z80/player/psg.z80')
| -rw-r--r-- | src-z80/player/psg.z80 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src-z80/player/psg.z80 b/src-z80/player/psg.z80 index b88978c..6ddaae7 100644 --- a/src-z80/player/psg.z80 +++ b/src-z80/player/psg.z80 @@ -10,8 +10,10 @@ UpdatePSG: push bc ld a, (hl) ; Get channel volume - bit 7, a - jr nz, .noskip +; bit 7, a +; jr nz, .noskip + or a + jp m, .noskip ld b, $0F inc l jp .skip |
