From 3389f76cc21ff5cdabced8b75a1d82d5d2155aed Mon Sep 17 00:00:00 2001 From: Pecusx Date: Tue, 4 May 2021 22:38:05 +0200 Subject: [PATCH] Atari Console keys Added: Help, Start, Select, Option and Reset keys. --- libretro/vkbd_def.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libretro/vkbd_def.h b/libretro/vkbd_def.h index 6a77f20..3f79cbd 100644 --- a/libretro/vkbd_def.h +++ b/libretro/vkbd_def.h @@ -101,8 +101,8 @@ Mvk MVk[NPLGN*NLIGN*2]={ { " @" ," |" ,0x32}, { " [" ," [" ,0x21}, - { " F4" ," F4" ,RETROK_F4}, //70+14 - { " F5" ," F5" ,RETROK_F5}, + { "OPT" ,"OPT" ,RETROK_F4}, //70+14 + { "RES." ,"RES." ,RETROK_F5}, { " F6" ," F6" ,RETROK_F6}, { " ." ," ." ,0x07}, { " <-" ," <-" ,0x10}, @@ -114,9 +114,9 @@ Mvk MVk[NPLGN*NLIGN*2]={ { " *" ," *", RETROK_ASTERISK}, { "# " ,"# " ,RETROK_HASH}, - { " F1" ," F1" ,RETROK_F1},//80+16 - { " F2" ," F2" ,RETROK_F2}, - { " F3" ," F3" ,RETROK_F3}, + { "HELP" ,"HELP" ,RETROK_F1},//80+16 + { "STA" ,"STA" ,RETROK_F2}, + { "SEL" ,"SEL" ,RETROK_F3}, { "Ent" ,"Ent" ,0x06}, { " b" ," B" ,0x66}, { " \\/" ," \\/" ,0x02},