summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/xworld/SOURCES1
-rw-r--r--apps/plugins/xworld/intern.c24
-rw-r--r--apps/plugins/xworld/sys.c6
3 files changed, 5 insertions, 26 deletions
diff --git a/apps/plugins/xworld/SOURCES b/apps/plugins/xworld/SOURCES
index 98b5f14..eb331b1 100644
--- a/apps/plugins/xworld/SOURCES
+++ b/apps/plugins/xworld/SOURCES
@@ -1,7 +1,6 @@
bank.c
engine.c
file.c
-intern.c
mixer.c
parts.c
resource.c
diff --git a/apps/plugins/xworld/intern.c b/apps/plugins/xworld/intern.c
deleted file mode 100644
index 7a31c82..0000000
--- a/apps/plugins/xworld/intern.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/***************************************************************************
- * __________ __ ___.
- * Open \______ \ ____ ____ | | _\_ |__ _______ ___
- * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
- * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
- * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
- * \/ \/ \/ \/ \/
- * $Id$
- *
- * Copyright (C) 2014 Franklin Wei, Benjamin Brown
- * Copyright (C) 2004 Gregory Montoir
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- * KIND, either express or implied.
- *
- ***************************************************************************/
-
-#include "intern.h"
-#include "awendian.h"
diff --git a/apps/plugins/xworld/sys.c b/apps/plugins/xworld/sys.c
index 9d52cf6..356298d 100644
--- a/apps/plugins/xworld/sys.c
+++ b/apps/plugins/xworld/sys.c
@@ -155,7 +155,8 @@ static bool sys_do_help(void)
"Level", "15:", "LFCK", "",
};
struct style_text style[] = {
- { 0, TEXT_CENTER | TEXT_UNDERLINE },
+ {0, TEXT_CENTER | TEXT_UNDERLINE},
+ LAST_STYLE_ITEM
};
return display_text(ARRAYLEN(help_text), help_text, style, NULL, true);
@@ -403,6 +404,9 @@ void sys_menu(struct System* sys)
void sys_init(struct System* sys, const char* title)
{
(void) title;
+#ifdef HAVE_ADJUSTABLE_CPU_FREQ
+ rb->cpu_boost(true);
+#endif
backlight_ignore_timeout();
rb_atexit(exit_handler);
save_sys = sys;