diff options
author | William Wilgus <wilgus.william@gmail.com> | 2020-07-21 02:33:53 -0400 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2020-07-22 06:48:28 -0400 |
commit | cb94b3ae2ee7a66845895e2c704cdf62ee74ba13 (patch) | |
tree | 0b2da61e3d513fdc37d18f075b6c079e85165781 /apps/plugins/sdl | |
parent | a5df94beb5cd7fd87828b9532b4a1a4da13ef774 (diff) | |
download | rockbox-cb94b3ae2ee7a66845895e2c704cdf62ee74ba13.tar.gz rockbox-cb94b3ae2ee7a66845895e2c704cdf62ee74ba13.tar.bz2 rockbox-cb94b3ae2ee7a66845895e2c704cdf62ee74ba13.zip |
keyboard add ability to specify temporary custom layouts
rb core allows you to load custom keyboard layouts
this patch adds the ability to load a keyboard layout in a buffer
the custom layout is temporary and does not overwrite the current layout
use like so:
unsigned short kbd[64];
unsigned short *kbd_p = kbd;
if (!kbd_create_layout("ABCD1234\n", kbd, sizeof(kbd)))
kbd_p = NULL;
rb->kbd_input(buf,sizeof(buf), kbd_p);
Change-Id: I7be2bd4a1b4797a147fa70228a9749dc56ac052a
Diffstat (limited to 'apps/plugins/sdl')
-rw-r--r-- | apps/plugins/sdl/progs/duke3d/Game/src/console.c | 2 | ||||
-rw-r--r-- | apps/plugins/sdl/progs/quake/keys.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/sdl/progs/duke3d/Game/src/console.c b/apps/plugins/sdl/progs/duke3d/Game/src/console.c index c4a465eda3..47135f85f1 100644 --- a/apps/plugins/sdl/progs/duke3d/Game/src/console.c +++ b/apps/plugins/sdl/progs/duke3d/Game/src/console.c @@ -224,7 +224,7 @@ void CONSOLE_HandleInput() //If console_buffer[0] strlen() != 0 //1. Push the dirty_buffer unto the console_buffer //2. parse the text - rb->kbd_input(dirty_buffer, sizeof(dirty_buffer)); + rb->kbd_input(dirty_buffer, sizeof(dirty_buffer), NULL); CONSOLE_Printf("%s", dirty_buffer); console_cursor_pos = 0; diff --git a/apps/plugins/sdl/progs/quake/keys.c b/apps/plugins/sdl/progs/quake/keys.c index 896bbaa795..e1285080a8 100644 --- a/apps/plugins/sdl/progs/quake/keys.c +++ b/apps/plugins/sdl/progs/quake/keys.c @@ -151,7 +151,7 @@ keyname_t keynames[] = /* Rockbox hack */ void rb_console(void) { - rb->kbd_input(key_lines[edit_line] + 1, MAXCMDLINE-1); + rb->kbd_input(key_lines[edit_line] + 1, MAXCMDLINE-1, NULL); } /* |