1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00

nilrider:: moved simulation_speed to settings

This commit is contained in:
Zeno Rogue 2024-08-20 13:42:03 +02:00
parent 0ffb187d32
commit e18b0b29b2

View File

@ -368,8 +368,6 @@ void pick_game() {
dialog::addItem("change the track", 't'); dialog::addItem("change the track", 't');
dialog::add_action_push(pick_level); dialog::add_action_push(pick_level);
dialog::addBreak(100); dialog::addBreak(100);
add_edit(simulation_speed);
dialog::addBreak(100);
add_edit(planning_mode); add_edit(planning_mode);
dialog::addItem(XLAT("play this track"), SDLK_ESCAPE); dialog::addItem(XLAT("play this track"), SDLK_ESCAPE);
dialog::addItem(XLAT("quit Nil Rider"), 'q'); dialog::addItem(XLAT("quit Nil Rider"), 'q');
@ -413,6 +411,8 @@ void settings() {
add_edit(whdist); add_edit(whdist);
add_edit(min_gfx_slope); add_edit(min_gfx_slope);
add_edit(stepped_display); add_edit(stepped_display);
add_edit(simulation_speed);
add_break(100);
dialog::addItem("projection", 'P'); dialog::addItem("projection", 'P');
dialog::add_action_push(nil_projection); dialog::add_action_push(nil_projection);
dialog::addItem("configure keys", 'k'); dialog::addItem("configure keys", 'k');