Skip to content

Commit

Permalink
[APU]
Browse files Browse the repository at this point in the history
- Fix bad merge
  • Loading branch information
fjpolo committed Sep 20, 2024
1 parent 18edec8 commit 21e96d5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/apu.v
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,6 @@ wire [15:0] sample_linear = ch1 + ch2_enhanced << 1;
wire [15:0] ch2_mix_normal_enhanced_tri = mix_lut[mix_enhanced];
wire [15:0] sample_mix_normal_enhanced_tri = ch1 + ch2_enhanced;

assign sample = (((!apu_enhanced_ce)||(apu_mapper_saturates)) ? sample_normal : sample_linear);
assign sample = !apu_enhanced_ce ? sample_normal :
!apu_mapper_saturates ? sample_linear :
sample_mix_normal_enhanced_tri;
Expand Down

0 comments on commit 21e96d5

Please sign in to comment.