Skip to content

Commit

Permalink
fix radial/keyboard rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
fayer3 committed Jul 9, 2024
1 parent be87d16 commit a2b2927
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ public static void drawScreen(float f, Screen screen, PoseStack poseStack) {

Matrix4f guiProjection = Matrix4f.orthographic(
0.0F, (float) (mc.getWindow().getWidth() / mc.getWindow().getGuiScale()),
(float) (mc.getWindow().getHeight() / mc.getWindow().getGuiScale()), 0.0F,
1000.0F, 3000.0F);
0.0F, (float) (mc.getWindow().getHeight() / mc.getWindow().getGuiScale()),
1000.0F, 3000.0F);
RenderSystem.setProjectionMatrix(guiProjection);

RenderSystem.blendFuncSeparate(
Expand Down

0 comments on commit a2b2927

Please sign in to comment.