Skip to content

Commit

Permalink
Reduce diff
Browse files Browse the repository at this point in the history
  • Loading branch information
JNechaevsky committed Nov 27, 2024
1 parent af651bd commit 8c05ab4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/i_video.c
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ void I_SetPalette (int palette)
break;
// Hexen exclusive color panes and palette indexes
// https://doomwiki.org/wiki/PLAYPAL#Hexen
case 14: // STARTPOISONPALS + 1
case 14: // STARTPOISONPALS + 1 (13 is shared with other games)
case 15:
case 16:
case 17:
Expand All @@ -1170,11 +1170,11 @@ void I_SetPalette (int palette)
pane_alpha = alpha_values[palette - 13][a11y_pal_flash];
}
break;
case 21: // STARTICEPAL
case 21: // STARTICEPAL
curpane = bluepane;
pane_alpha = alpha_values[palette - 13][a11y_pal_flash];
break;
case 22: // STARTHOLYPAL
case 22: // STARTHOLYPAL
curpane = graypane;
if (vis_smooth_palette)
{
Expand All @@ -1190,7 +1190,7 @@ void I_SetPalette (int palette)
curpane = graypane;
pane_alpha = alpha_values[palette - 13][a11y_pal_flash];
break;
case 25: // STARTSCOURGEPAL
case 25: // STARTSCOURGEPAL
case 26:
case 27:
curpane = orngpane;
Expand Down

0 comments on commit 8c05ab4

Please sign in to comment.