Skip to content

Commit

Permalink
Apply Intel patch by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Moresteck committed Oct 16, 2024
1 parent 790c13d commit 9c450a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
public class IntelPatch extends Patch {
public IntelPatch() {
super("intelpatch", "Patches rendering on Intel", false);
super("intelpatch", "Patches rendering on Intel", true);
}

public void apply(final Instrumentation inst) throws PatchException, Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public LWJGLFramePatch() {
@Override
public void apply(final Instrumentation inst) throws PatchException, Exception {
try {
IconUtils.loadIcons((String) LegacyFixAgent.getSettings().get("icon"));
IconUtils.loadIcons((String) LegacyFixAgent.getSettings().get("lf.icon"));
} catch (Exception e) {
LFLogger.error(this, e);
}
Expand Down

0 comments on commit 9c450a7

Please sign in to comment.