From b1403ee024f81ced657261441571ee5e8bab71ce Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Fri, 23 Jul 2004 23:01:20 +0000 Subject: New way of defining menus and options allows to declare them static const, which saves the code to runtime-assemble them. Rockbox just got 6 KB smaller. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4931 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/common/stubs.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'uisimulator') diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index ceb8ba1ebe..700188fe2a 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -28,6 +28,7 @@ #include "string.h" #include "lcd.h" +#include "settings.h" extern char having_new_lcd; @@ -277,3 +278,7 @@ void remove_thread(int threadnum) { (void)threadnum; } + +/* assure an unused place to direct virtual pointers to */ +unsigned char vp_dummy[VIRT_SIZE]; + -- cgit