summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 76bc72a048..df23c42443 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id$ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2002 Björn Stenberg 10 * Copyright (C) 2002 Bj�n Stenberg
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -510,7 +510,11 @@ static int onplay_callback(int key, int menu)
510{ 510{
511 (void)menu; 511 (void)menu;
512 512
513 if (key == MENU_EXIT_MENU) 513 if (key == MENU_EXIT_MENU
514#ifdef MENU_RC_EXIT_MENU
515 || key == MENU_RC_EXIT_MENU
516#endif
517 )
514 exit_to_main = true; 518 exit_to_main = true;
515 519
516 return key; 520 return key;