diff options
author | Karl Kurbjun <kkurbjun@gmail.com> | 2009-04-09 04:22:14 +0000 |
---|---|---|
committer | Karl Kurbjun <kkurbjun@gmail.com> | 2009-04-09 04:22:14 +0000 |
commit | 93fccc763b97323cb3112bf9afee819cd03ba195 (patch) | |
tree | 8b3da3ecd807da715478fe4cc1697fcffea1bd67 /apps/plugin.c | |
parent | 49fcfe81b861f866c4e9e16e272f33654a1be450 (diff) |
M:Robe 500: More LCD initialization, QVGA (vs. VGA) is now enabled by default for performance, 256 color palette mode added, include some linker cleanups and reorganization. Doom and MPEGPlayer now run reaonably well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20664 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r-- | apps/plugin.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 17e9ac670b..087bf74a38 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -636,6 +636,13 @@ static const struct plugin_api rockbox_api = { #if defined(HAVE_LCD_MODES) lcd_set_mode, #endif + +#if defined(HAVE_LCD_MODES) +#if HAVE_LCD_MODES & LCD_MODE_PAL256 + lcd_blit_pal256, + lcd_pal256_update_pal, +#endif +#endif }; int plugin_load(const char* plugin, const void* parameter) |