Skip to content

Commit

Permalink
Fix mod logos not being rendered in the mod list (#1615)
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt authored Oct 24, 2024
1 parent d19ca06 commit 3f10254
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ default void blitInscribed(ResourceLocation texture, int x, int y, int boundsWid
if (centerX) x += (w - boundsWidth) / 2;
}

self().blit(RenderType::guiTextured, texture, x, y, boundsWidth, boundsHeight, 0, 0, rectWidth, rectHeight, rectWidth, rectHeight);
self().blit(RenderType::guiTextured, texture, x, y, 0, 0, boundsWidth, boundsHeight, rectWidth, rectHeight, rectWidth, rectHeight);
}

// TODO: 1.20.2: do we need to fix these or can we just remove them?
Expand Down

0 comments on commit 3f10254

Please sign in to comment.