Skip to content

Commit

Permalink
Merge branch '10.x-1.19.3' into 11.x-1.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
shedaniel committed Sep 1, 2023
2 parents 722ed4e + 99c6a21 commit e8cec3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ private static void prepare() {
Minecraft minecraft = Minecraft.getInstance();
TextureTarget target = new TextureTarget(width, height, true, false);
target.bindWrite(true);
Matrix4f projectionMatrix = new Matrix4f().setOrtho(0.0F, width, 0.0F, height, 1000.0F, 3000.0F);
Matrix4f projectionMatrix = new Matrix4f().setOrtho(0.0F, width, height, 0.0F, 1000.0F, 3000.0F);
RenderSystem.setProjectionMatrix(projectionMatrix);
PoseStack modelViewStack = RenderSystem.getModelViewStack();
modelViewStack.pushPose();
Expand Down

0 comments on commit e8cec3c

Please sign in to comment.