1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-29 16:57:56 +00:00

rogueviz:: fifteen:: fixed quit key

This commit is contained in:
Zeno Rogue
2025-06-25 13:36:47 +02:00
parent 15d0e6e692
commit 36e0d8bba2

View File

@@ -586,7 +586,7 @@ void fifteen_menu() {
pushScreen(fifteen_play); pushScreen(fifteen_play);
current_puzzle = &p; current_puzzle = &p;
quitter = [] { quitter = [] {
dialog::addItem("quit", 'Q'); dialog::addItem("quit", 'q');
dialog::add_action([] { quitmainloop = true; }); dialog::add_action([] { quitmainloop = true; });
}; };
}); });