int ypos = (vkbd->top ? 0 : g_screen_height - KBD_ROWS*me_sfont_h);
// HACK: smalltext_out is only available on menuscreen :-/
+int w = g_menuscreen_w, h = g_menuscreen_h;
g_menuscreen_ptr = (u16 *)g_screen_ptr;
g_menuscreen_pp = g_screen_ppitch;
g_menuscreen_w = g_screen_width;
smalltext_out16(xpos, ypos+i*me_sfont_h, text, color);
}
}
+
+g_menuscreen_w = w, g_menuscreen_h = h;
}
int vkbd_update(struct vkbd *vkbd, int input, int *actions)
key = &kbd[keyy][keyx];
menu_draw_begin(1, 0);
- text_out16(x, 2 * me_mfont_h, "== %s Keyboard ==", toggle ? "SC-3000" : "Pico");
+ text_out16(x - w, 2 * me_mfont_h, "Keyboard type: %s", toggle ? "SC-3000" : "Pico");
kbd_draw(kbd, shift, (g_menuscreen_w - 320)/2, 4 * me_mfont_h, key);
- text_out16(x, g_menuscreen_h - 4 * me_mfont_h, "Press a button to bind/unbind");
+ text_out16(x - 2*w, g_menuscreen_h - 4 * me_mfont_h, "Press a button to bind/unbind");
menu_draw_end();
/* wait for some up event */