X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=frontend%2Fmenu.c;h=65f7b98af79cbf5c22df86ab275cb03910a0b96b;hp=57156d577454b54790a1d750b0dff87798078dfb;hb=2e6189bc568b4e95cf5b04cf84375b3e918675f1;hpb=dd4d5a35678c8ff7f9a7c0ac42be354671534f96 diff --git a/frontend/menu.c b/frontend/menu.c index 57156d57..65f7b98a 100644 --- a/frontend/menu.c +++ b/frontend/menu.c @@ -1698,11 +1698,14 @@ static void menu_bios_warn(void) "The file is usually named SCPH1001.BIN,\n" "but other not compressed files can be\n" "used too.\n\n" - "Press (B) or (X) to continue"; + "Press %s or %s to continue"; + char tmp_msg[sizeof(msg) + 64]; + snprintf(tmp_msg, sizeof(tmp_msg), msg, + in_get_key_name(-1, -PBTN_MOK), in_get_key_name(-1, -PBTN_MBACK)); while (1) { - draw_menu_message(msg, NULL); + draw_menu_message(tmp_msg, NULL); inp = in_menu_wait(PBTN_MOK|PBTN_MBACK, 70); if (inp & (PBTN_MBACK|PBTN_MOK))