Skip to content

Commit

Permalink
Always use translation tables from resource wad
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Nov 3, 2024
1 parent 21c851f commit c57575c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v_video.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static colortranslation_t colortranslations[] =
void V_InitColorTranslation(void)
{
for (colortranslation_t *p = colortranslations; *p->name; p++)
*p->lump = W_CacheLumpName(p->name);
*p->lump = W_CacheLumpNameFromResourceWAD(p->name);

for (int i = 0; i < 256; i++)
{
Expand Down

0 comments on commit c57575c

Please sign in to comment.