Skip to content

Commit

Permalink
Switch input to L|Z
Browse files Browse the repository at this point in the history
from R so we can use it for options.
  • Loading branch information
networkfusion committed Dec 26, 2024
1 parent 5113a34 commit 4398a70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/menu/views/load_disk.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static void process (menu_t *menu) {
if (menu->actions.enter) {
menu->boot_pending.disk_file = true;
menu->load.combined_disk_rom = false;
} else if (menu->actions.options && menu->load.rom_path) {
} else if (menu->actions.lz_context && menu->load.rom_path) {
menu->boot_pending.disk_file = true;
menu->load.combined_disk_rom = true;
sound_play_effect(SFX_SETTING);
Expand Down Expand Up @@ -87,7 +87,7 @@ static void draw (menu_t *menu, surface_t *d) {
if (menu->load.rom_path) {
ui_components_actions_bar_text_draw(
ALIGN_RIGHT, VALIGN_TOP,
"R: Load with ROM"
"L|Z: Load with ROM\n"
);
}

Expand Down

0 comments on commit 4398a70

Please sign in to comment.