summaryrefslogtreecommitdiff
path: root/uisimulator/x11/button-x11.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-05 15:40:49 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-05 15:40:49 +0000
commit93c1b40b8db15b50654b45544178dc1ea8d509e8 (patch)
tree186283d20e98390b21e7bfe26792fdead74f6595 /uisimulator/x11/button-x11.c
parent801778d0e8373a897b8b01f12ae69ba79ef69eff (diff)
downloadrockbox-93c1b40b8db15b50654b45544178dc1ea8d509e8.tar.gz
rockbox-93c1b40b8db15b50654b45544178dc1ea8d509e8.zip
there is no XK_Enter!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1538 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/x11/button-x11.c')
-rw-r--r--uisimulator/x11/button-x11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uisimulator/x11/button-x11.c b/uisimulator/x11/button-x11.c
index c765927189..1d27eff134 100644
--- a/uisimulator/x11/button-x11.c
+++ b/uisimulator/x11/button-x11.c
@@ -59,7 +59,7 @@ int button_set_release(int newmask)
59 * Recorder: 59 * Recorder:
60 * Space=Play Q=On A=Off 1,2,3 = F1,F2,F3 60 * Space=Play Q=On A=Off 1,2,3 = F1,F2,F3
61 * Player: 61 * Player:
62 * Q=On Enter=Menu 62 * Q=On Return=Menu
63 */ 63 */
64 64
65/* from uibasic.c */ 65/* from uibasic.c */
@@ -125,7 +125,7 @@ static int get_raw_button (void)
125 return BUTTON_ON; 125 return BUTTON_ON;
126 126
127 case XK_KP_Enter: 127 case XK_KP_Enter:
128 case XK_Enter: 128 case XK_Return:
129 return BUTTON_MENU; 129 return BUTTON_MENU;
130#endif 130#endif
131 131