diff options
Diffstat (limited to 'bootloader/mpio_hd200.c')
-rw-r--r-- | bootloader/mpio_hd200.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bootloader/mpio_hd200.c b/bootloader/mpio_hd200.c index 65bc5be4a4..98c83239f7 100644 --- a/bootloader/mpio_hd200.c +++ b/bootloader/mpio_hd200.c | |||
@@ -233,7 +233,7 @@ static void bootmenu(void) | |||
233 | 233 | ||
234 | printf("========================="); | 234 | printf("========================="); |
235 | printf(""); | 235 | printf(""); |
236 | printf(" [FF] [PREV] to move "); | 236 | printf(" [FF] [REW] to move "); |
237 | printf(" [PLAY] to confirm "); | 237 | printf(" [PLAY] to confirm "); |
238 | 238 | ||
239 | /* content of menu and keys handling */ | 239 | /* content of menu and keys handling */ |
@@ -262,16 +262,16 @@ static void bootmenu(void) | |||
262 | 262 | ||
263 | switch (button) | 263 | switch (button) |
264 | { | 264 | { |
265 | case BUTTON_PREV: | 265 | case BUTTON_REW: |
266 | case BUTTON_RC_PREV: | 266 | case BUTTON_RC_REW: |
267 | if (option > rockbox) | 267 | if (option > rockbox) |
268 | option--; | 268 | option--; |
269 | else | 269 | else |
270 | option = shutdown; | 270 | option = shutdown; |
271 | break; | 271 | break; |
272 | 272 | ||
273 | case BUTTON_NEXT: | 273 | case BUTTON_FF: |
274 | case BUTTON_RC_NEXT: | 274 | case BUTTON_RC_FF: |
275 | if (option < shutdown) | 275 | if (option < shutdown) |
276 | option++; | 276 | option++; |
277 | else | 277 | else |