Skip to content

Commit

Permalink
Bump default jetsam multiplier to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
opa334 committed Jul 30, 2024
1 parent 8f4a28a commit 7cb6b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Application/Dopamine/UI/Settings/DOSettingsController.m
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ - (id)readJetsamMultiplier:(PSSpecifier *)specifier
DOEnvironmentManager *envManager = [DOEnvironmentManager sharedManager];
if (envManager.isJailbroken) {
double v = jbclient_jbsettings_get_double("jetsamMultiplier");
return @((v < 1 || isnan(v)) ? 4 : ceil(v * 2));
return @((v < 1 || isnan(v)) ? 6 : ceil(v * 2));
}
return [self readPreferenceValue:specifier];
}
Expand Down

0 comments on commit 7cb6b93

Please sign in to comment.