small UI chanes

This commit is contained in:
Stossy11 2025-02-12 17:09:30 +11:00
parent 00a06c4dc8
commit 839ddab589
3 changed files with 16 additions and 5 deletions

View File

@ -253,9 +253,16 @@ struct ContentView: View {
} }
Air.play(AnyView( Air.play(AnyView(
Text("Select Game") VStack {
.font(.system(size: 100)) Image(systemName: "gamecontroller")
.font(.system(size: 300))
.foregroundColor(.gray)
.padding(.bottom, 10)
Text("Select Game")
.font(.system(size: 150))
.bold()
}
)) ))
let isJIT = isJITEnabled() let isJIT = isJITEnabled()

View File

@ -382,7 +382,7 @@ struct SettingsView: View {
} }
} else { } else {
Toggle(isOn: $useTrollStore) { Toggle(isOn: $useTrollStore) {
labelWithIcon("TrollStore", iconName: "troll.svg") labelWithIcon("TrollStore JIT", iconName: "troll.svg")
} }
.tint(.blue) .tint(.blue)
} }
@ -407,7 +407,7 @@ struct SettingsView: View {
.textCase(nil) .textCase(nil)
.headerProminence(.increased) .headerProminence(.increased)
} footer: { } footer: {
Text("Enable trace and debug logs for troubleshooting, enable Screenshotting without distractions and Enable automatic TrollStore JIT.") Text("Enable trace and debug logs for advanced troubleshooting (Note: This degrades performance),\nEnable Screenshot Button for better screenshots\nand Enable TrollStore for automatic TrollStore JIT.")
} }
// Advanced // Advanced
@ -420,6 +420,10 @@ struct SettingsView: View {
labelWithIcon("MVK: Pre-Fill Metal Command Buffers", iconName: "gearshape") labelWithIcon("MVK: Pre-Fill Metal Command Buffers", iconName: "gearshape")
}.tint(.blue) }.tint(.blue)
Toggle(isOn: $config.dfsIntegrityChecks) {
labelWithIcon("Disable FS Integrity Checks", iconName: "checkmark.shield")
}.tint(.blue)
HStack { HStack {
labelWithIcon("Page Size", iconName: "textformat.size") labelWithIcon("Page Size", iconName: "textformat.size")
Spacer() Spacer()