Skip to content

Commit

Permalink
Fix batcher drawing recipe categories in wrong spot on BoM screen
Browse files Browse the repository at this point in the history
  • Loading branch information
embeddedt committed Dec 23, 2024
1 parent 35ea64a commit 4c86202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xplat/src/main/java/dev/emi/emi/screen/StackBatcher.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void begin(int x, int y, int z) {
public void render(Batchable batchable, DrawContext draw, int x, int y, float delta) {
if (!populated) {
try {
batchable.renderForBatch(batchable.isSideLit() ? imm : unlitFacade, draw, x-this.x, -y+this.y, z, delta);
batchable.renderForBatch(batchable.isSideLit() ? imm : unlitFacade, draw, x-this.x, y+this.y, z, delta);
} catch (Throwable t) {
if (EmiConfig.devMode) {
EmiLog.error("Batchable threw exception during batched rendering. See log for info");
Expand Down

0 comments on commit 4c86202

Please sign in to comment.