Skip to content

Commit

Permalink
Add more cpu clock options in emuThree
Browse files Browse the repository at this point in the history
Lowering the cpu clock can significantly improve performance and is possible in emuThree and Folium. I have also added the description for cpu clock speed from Citra because it explains how it can cause freezes.
  • Loading branch information
yippeeeyay authored Dec 2, 2024
1 parent 73ea2b5 commit dcc9df6
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion Cores/emuThree/PVEmuThreeCore/Core/PVEmuThreeCoreOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,25 @@ import PVCoreBridge

static var cpuClockOption: CoreOption {
.enumeration(.init(title: "CPU Clock",
description: "(Requires Restart)",
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 dcc9df6

Please sign in to comment.