Skip to content

Commit

Permalink
Fix polygon mode mixin using face as mode (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox2Code authored Jan 15, 2025
1 parent 5231929 commit 93ef2a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,9 @@ public static void disableCull() {
* @author
*/
@Overwrite(remap = false)
public static void polygonMode(final int i, final int j) {
public static void polygonMode(final int face, final int mode) {
assertOnRenderThread();
VRenderSystem.setPolygonModeGL(i);
VRenderSystem.setPolygonModeGL(mode);
}

/**
Expand Down

0 comments on commit 93ef2a6

Please sign in to comment.