Skip to content

Commit

Permalink
Palette fix for NTSC ARTIFACT
Browse files Browse the repository at this point in the history
  • Loading branch information
IanSB committed May 13, 2021
1 parent 91dfaf9 commit 6e462ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd.c
Expand Up @@ -3956,7 +3956,7 @@ void osd_update_palette() {
if (get_paletteControl() == PALETTECONTROL_NTSCARTIFACT_CGA) {
palette_data[i] = create_NTSC_artifact_colours_palette_320(i & 0x7f);
} else {
palette_data[i] = palette_array[palette][i_adj];
palette_data[i] = 0;
}
} else {
int filtered_bitcount = ((i & 0x3f) >> 4) + 1;
Expand Down

0 comments on commit 6e462ba

Please sign in to comment.