diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2011-10-05 17:43:51 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2011-10-05 17:43:51 +0000 |
| commit | 6efb3f0760b54fb80423924a7aab17da043dbba9 (patch) | |
| tree | 605619029ea1bbbc16b4817130b774fcfbdf2637 /apps/main.c | |
| parent | 8c4941e56130d59cb4de465ef53311815945253a (diff) | |
| download | rockbox-6efb3f0760b54fb80423924a7aab17da043dbba9.zip rockbox-6efb3f0760b54fb80423924a7aab17da043dbba9.tar.gz rockbox-6efb3f0760b54fb80423924a7aab17da043dbba9.tar.bz2 rockbox-6efb3f0760b54fb80423924a7aab17da043dbba9.tar.xz | |
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.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/main.c b/apps/main.c index 4d1293d..f0da50e 100644 --- a/apps/main.c +++ b/apps/main.c @@ -350,9 +350,6 @@ static void init(void) #ifdef HAVE_REMOTE_LCD lcd_remote_init(); #endif - /* This init call allocates an *unmovable* block so must be - * before any other moveable allocs. */ - theme_init_buffer(); #ifdef HAVE_LCD_BITMAP FOR_NB_SCREENS(i) global_status.font_id[i] = FONT_SYSFIXED; @@ -393,6 +390,7 @@ static void init(void) tree_mem_init(); filetype_init(); playlist_init(); + theme_init_buffer(); #if CONFIG_CODEC != SWCODEC mp3_init( global_settings.volume, @@ -442,10 +440,6 @@ static void init(void) cpu_boost(true); #endif - /* This init call allocates an *unmovable* block so must be - * before any other moveable allocs. */ - theme_init_buffer(); - i2c_init(); power_init(); |