Add tweak to enable/disable TV settings screen

This commit is contained in:
Max Roncace
2026-03-17 01:07:22 -04:00
parent 4d3330acf5
commit 970664d7f9
5 changed files with 63 additions and 24 deletions
+4
View File
@@ -11,6 +11,10 @@ namespace dusk {
if (ImGui::BeginMenu("Enhancements")) {
if (ImGui::BeginMenu("Quality of Life")) {
ImGui::Checkbox("Quick Transform (R+Y)", &getSettings().game.enableQuickTransform);
ImGui::Checkbox("Hide TV Settings Screen", &getSettings().game.hideTvSettingsScreen);
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("Hides the TV calibration screen shown when loading a save");
}
ImGui::EndMenu();
}