summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-10-05 17:43:51 +0000
committerThomas Martitz <kugel@rockbox.org>2011-10-05 17:43:51 +0000
commit6efb3f0760b54fb80423924a7aab17da043dbba9 (patch)
tree605619029ea1bbbc16b4817130b774fcfbdf2637 /apps/main.c
parent8c4941e56130d59cb4de465ef53311815945253a (diff)
downloadrockbox-6efb3f0760b54fb80423924a7aab17da043dbba9.tar.gz
rockbox-6efb3f0760b54fb80423924a7aab17da043dbba9.zip
Revert r30599 "Check for the magic file "/.rockbox/skin_buffer_size.txt" [...]"
It's not clear whether a user setting is the right/accepted fix for the skin buffer. But even if it is, this implementation of it is considered bad, even by the author. See http://www.rockbox.org/mail/archive/rockbox-dev-archive-2011-09/0054.shtml git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30718 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/main.c b/apps/main.c
index 4d1293dcce..f0da50eaa6 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -350,9 +350,6 @@ static void init(void)
350#ifdef HAVE_REMOTE_LCD 350#ifdef HAVE_REMOTE_LCD
351 lcd_remote_init(); 351 lcd_remote_init();
352#endif 352#endif
353 /* This init call allocates an *unmovable* block so must be
354 * before any other moveable allocs. */
355 theme_init_buffer();
356#ifdef HAVE_LCD_BITMAP 353#ifdef HAVE_LCD_BITMAP
357 FOR_NB_SCREENS(i) 354 FOR_NB_SCREENS(i)
358 global_status.font_id[i] = FONT_SYSFIXED; 355 global_status.font_id[i] = FONT_SYSFIXED;
@@ -393,6 +390,7 @@ static void init(void)
393 tree_mem_init(); 390 tree_mem_init();
394 filetype_init(); 391 filetype_init();
395 playlist_init(); 392 playlist_init();
393 theme_init_buffer();
396 394
397#if CONFIG_CODEC != SWCODEC 395#if CONFIG_CODEC != SWCODEC
398 mp3_init( global_settings.volume, 396 mp3_init( global_settings.volume,
@@ -442,10 +440,6 @@ static void init(void)
442 cpu_boost(true); 440 cpu_boost(true);
443#endif 441#endif
444 442
445 /* This init call allocates an *unmovable* block so must be
446 * before any other moveable allocs. */
447 theme_init_buffer();
448
449 i2c_init(); 443 i2c_init();
450 444
451 power_init(); 445 power_init();