fix fastforward soundoption with FF-toggle mode (#130)

This commit is contained in:
RobertPeip
2021-01-17 11:25:50 +01:00
committed by GitHub
parent 66d9e5171a
commit 263f1fa2fa

View File

@@ -699,8 +699,8 @@ gb gb (
.rewind_active(status[27] & joystick_0[11])
);
assign AUDIO_L = (joystick_0[8] && status[25]) ? 16'd0 : GB_AUDIO_L;
assign AUDIO_R = (joystick_0[8] && status[25]) ? 16'd0 : GB_AUDIO_R;
assign AUDIO_L = (fast_forward && status[25]) ? 16'd0 : GB_AUDIO_L;
assign AUDIO_R = (fast_forward && status[25]) ? 16'd0 : GB_AUDIO_R;
// the lcd to vga converter
wire [7:0] video_r, video_g, video_b;