docs(help): add M / P / Win-Summary-Enter to the Overlays section

The Help (F1) modal's Overlays section listed S/A/L/O but skipped
two post-v0.18 entries — M (Home / Mode launcher) and P (Profile) —
and never mentioned the recently-shipped Enter accelerator that
dismisses the Win Summary.

Help is the canonical keyboard-discovery surface. Three new rows
cover the gap so a player who opens F1 sees every overlay-toggle
key, plus the contextual Enter shortcut.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
funman300
2026-05-07 17:40:44 +00:00
parent 9b065e5ac6
commit 35516d31f6
+3
View File
@@ -184,6 +184,8 @@ const CONTROL_SECTIONS: &[ControlSection] = &[
ControlSection { ControlSection {
title: "Overlays", title: "Overlays",
rows: &[ rows: &[
ControlRow { keys: "M", description: "Mode launcher (Home)" },
ControlRow { keys: "P", description: "Profile" },
ControlRow { keys: "S", description: "Stats & progression" }, ControlRow { keys: "S", description: "Stats & progression" },
ControlRow { keys: "A", description: "Achievements" }, ControlRow { keys: "A", description: "Achievements" },
ControlRow { keys: "L", description: "Leaderboard" }, ControlRow { keys: "L", description: "Leaderboard" },
@@ -192,6 +194,7 @@ const CONTROL_SECTIONS: &[ControlSection] = &[
ControlRow { keys: "F11", description: "Toggle fullscreen" }, ControlRow { keys: "F11", description: "Toggle fullscreen" },
ControlRow { keys: "Esc", description: "Pause / resume" }, ControlRow { keys: "Esc", description: "Pause / resume" },
ControlRow { keys: "[ / ]", description: "SFX volume down / up" }, ControlRow { keys: "[ / ]", description: "SFX volume down / up" },
ControlRow { keys: "Enter", description: "Play Again (on the Win Summary)" },
], ],
}, },
]; ];