Skip to content

Commit

Permalink
Fix remap warn
Browse files Browse the repository at this point in the history
  • Loading branch information
dima-dencep committed Apr 23, 2024
1 parent ee0b778 commit 8e1a116
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ private static int replaceAlpha(int color, int alpha) {
method = "render",
at = @At(
value = "INVOKE",
target = "Lcom/mojang/blaze3d/platform/GlStateManager;_clear(IZ)V"
target = "Lcom/mojang/blaze3d/platform/GlStateManager;_clear(IZ)V",
remap = false
)
)
public void rrls$_clear(int mask, boolean getError, Operation<Void> original) {
Expand All @@ -127,7 +128,8 @@ private static int replaceAlpha(int color, int alpha) {
method = "render",
at = @At(
value = "INVOKE",
target = "Lcom/mojang/blaze3d/platform/GlStateManager;_clearColor(FFFF)V"
target = "Lcom/mojang/blaze3d/platform/GlStateManager;_clearColor(FFFF)V",
remap = false
)
)
public void rrls$_clearColor(float red, float green, float blue, float alpha, Operation<Void> original) {
Expand Down

0 comments on commit 8e1a116

Please sign in to comment.