| 103 | int x, int y, int width, int height); |
| 104 | |
| 105 | static void VirtualKeyboard_Init(void) { |
| 106 | if (kb_inited) return; |
| 107 | kb_inited = true; |
| 108 | Font_Make(&kb_font, 16, FONT_FLAGS_NONE); |
| 109 | } |
| 110 | |
| 111 | static int VirtualKeyboard_Width(void) { |
| 112 | return kb->rowWidth * kb_tileWidth; |
no test coverage detected