diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-08-05 15:40:49 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-08-05 15:40:49 +0000 |
| commit | 93c1b40b8db15b50654b45544178dc1ea8d509e8 (patch) | |
| tree | 186283d20e98390b21e7bfe26792fdead74f6595 | |
| parent | 801778d0e8373a897b8b01f12ae69ba79ef69eff (diff) | |
| download | rockbox-93c1b40b8db15b50654b45544178dc1ea8d509e8.zip rockbox-93c1b40b8db15b50654b45544178dc1ea8d509e8.tar.gz rockbox-93c1b40b8db15b50654b45544178dc1ea8d509e8.tar.bz2 rockbox-93c1b40b8db15b50654b45544178dc1ea8d509e8.tar.xz | |
there is no XK_Enter!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1538 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/button-x11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/x11/button-x11.c b/uisimulator/x11/button-x11.c index c765927..1d27eff 100644 --- a/uisimulator/x11/button-x11.c +++ b/uisimulator/x11/button-x11.c @@ -59,7 +59,7 @@ int button_set_release(int newmask) * Recorder: * Space=Play Q=On A=Off 1,2,3 = F1,F2,F3 * Player: - * Q=On Enter=Menu + * Q=On Return=Menu */ /* from uibasic.c */ @@ -125,7 +125,7 @@ static int get_raw_button (void) return BUTTON_ON; case XK_KP_Enter: - case XK_Enter: + case XK_Return: return BUTTON_MENU; #endif |