Move Blur to Satin

This commit is contained in:
Pyrofab
2019-07-29 22:30:48 +02:00
parent a7c8ff7526
commit d1d9468482
13 changed files with 49 additions and 275 deletions

View File

@@ -15,13 +15,13 @@ public class MixinScreen {
method = "renderBackground(I)V",
constant = @Constant(intValue = -1072689136))
public int getFirstBackgroundColor(int color) {
return Blur.instance.getBackgroundColor(false);
return Blur.INSTANCE.getBackgroundColor(false);
}
@ModifyConstant(
method = "renderBackground(I)V",
constant = @Constant(intValue = -804253680))
public int getSecondBackgroundColor(int color) {
return Blur.instance.getBackgroundColor(true);
return Blur.INSTANCE.getBackgroundColor(true);
}
}