Skip to content

Commit

Permalink
Streamline cpu clock options
Browse files Browse the repository at this point in the history
I removed the 5%, 15%, 25% etc. cpu clock options that I added and just kept it down to increments of 10. This makes the list of options smaller
  • Loading branch information
yippeeeyay authored Dec 2, 2024
1 parent dcc9df6 commit 65b86c3
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,16 @@ import PVCoreBridge
description: "(Requires Restart) Underclocking can increase performance but may cause the game to freeze. Overclocking may reduce in game lag but also might cause freezes",
requiresRestart: true),
values: [
.init(title: "5%", description: "5%", value: 5),
.init(title: "10%", description: "10%", value: 10),
.init(title: "15%", description: "15%", value: 15),
.init(title: "20%", description: "20%", value: 20),
.init(title: "25%", description: "25%", value: 25),
.init(title: "30%", description: "30%", value: 30),
.init(title: "35%", description: "35%", value: 35),
.init(title: "40%", description: "40%", value: 40),
.init(title: "50%", description: "50%", value: 50),
.init(title: "60%", description: "60%", value: 60),
.init(title: "70%", description: "70%", value: 70),
.init(title: "80%", description: "80%", value: 80),
.init(title: "90%", description: "90%", value: 90),
.init(title: "100%", description: "100%", value: 100),
.init(title: "125%", description: "125%", value: 125),
.init(title: "150%", description: "150%", value: 150),
.init(title: "200%", description: "200%", value: 200),
.init(title: "300%", description: "300%", value: 300),
.init(title: "400%", description: "400%", value: 400),
Expand Down

0 comments on commit 65b86c3

Please sign in to comment.