This commit is contained in:
2026-04-18 18:16:41 +02:00
parent d09bb1cf6b
commit 4a4485c6f8
9 changed files with 36 additions and 20 deletions

View File

@@ -271,6 +271,8 @@ namespace Menu {
p.items.push_back({Locale::get("menu.items.show_title_credits"), ItemKind::Toggle, [] { return yesNo(Options::game.show_title_credits); }, [](int) { Options::game.show_title_credits = !Options::game.show_title_credits; }, nullptr});
p.items.push_back({Locale::get("menu.items.show_preload"), ItemKind::Toggle, [] { return yesNo(Options::game.show_preload); }, [](int) { Options::game.show_preload = !Options::game.show_preload; }, nullptr});
return p;
}