\r
if (kbd_mode) {\r
int mask = (PicoIn.AHW & PAHW_PICO ? 0xf : 0x0);\r
- if (currentConfig.keyboard == 1)\r
+ if (currentConfig.keyboard == 2)\r
count_kbd = in_update_kbd(actions_kbd);\r
- else if (currentConfig.keyboard == 2)\r
+ else if (currentConfig.keyboard == 1)\r
count_kbd = vkbd_update(vkbd, pl_actions[0], actions_kbd);\r
\r
// FIXME: Only passthrough joystick input to avoid collisions\r
plat_target_gamma_set(currentConfig.gamma, 0);\r
\r
vkbd = NULL;\r
- if (currentConfig.keyboard == 2) {\r
+ if (currentConfig.keyboard == 1) {\r
if (PicoIn.AHW & PAHW_SMS) vkbd = vkbd_init(0);\r
else if (PicoIn.AHW & PAHW_PICO) vkbd = vkbd_init(1);\r
}\r
int i, j;
struct key *key;
- if (g_menuscreen_w >= 480)
+ if (g_menuscreen_w >= (MENU_X2 ? 960 : 480))
xoffs -= 50;
for (i = 0; desc[i]; i++) {
for (j = 0, key = &desc[i][j]; key->lower; j++, key++) {
int color = (key != hi ? PXMAKE(0xa0, 0xa0, 0xa0) :
PXMAKE(0xff, 0xff, 0xff));
char *text = (shift ? key->upper : key->lower);
- if (g_menuscreen_w >= 480)
+ if (g_menuscreen_w >= (MENU_X2 ? 960 : 480))
text_out16_(xoffs + key->xpos*me_mfont_w, yoffs + i*me_mfont_h, text, color);
else
smalltext_out16(xoffs + key->xpos*me_sfont_w, yoffs + i*me_sfont_h, text, color);
static const char *mgn_keyboard(int id, int *offs)
{
- static char *kbds[] = { "OFF", "physical", "virtual" };
+ static char *kbds[] = { "OFF", "virtual", "physical" };
if (currentConfig.keyboard < 0 || currentConfig.keyboard > 2)
return kbds[0];
return kbds[currentConfig.keyboard];
static int key_config_keyboard(int id, int keys)
{
int kid = currentConfig.keyboard;
+#ifdef USE_SDL // TODO this info should come from platform!
+ int k = 2;
+#else
+ int k = 1;
+#endif
if (keys & PBTN_LEFT)
- if (--kid < 0) kid = 2;
+ if (--kid < 0) kid = k;
if (keys & PBTN_RIGHT)
- if (++kid > 2) kid = 0;
+ if (++kid > k) kid = 0;
currentConfig.keyboard = kid;
- e_menu_keyconfig[2].help = (currentConfig.keyboard == 1 ? h_kbd : NULL);
+ e_menu_keyconfig[2].help = (currentConfig.keyboard == 2 ? h_kbd : NULL);
if (keys & PBTN_MOK)
- if (currentConfig.keyboard == 1)
+ if (currentConfig.keyboard == 2)
key_config_kbd_loop(MA_CTRL_KEYBOARD, 0);
return 0;
player[strlen(player)-1] = '1';
e_menu_keyconfig[0].help = h_play12;
- e_menu_keyconfig[2].help = (currentConfig.keyboard == 1 ? h_kbd : NULL);
+ e_menu_keyconfig[2].help = (currentConfig.keyboard == 2 ? h_kbd : NULL);
me_loop_d(e_menu_keyconfig, &sel, menu_draw_prep, NULL);