diff options
| author | Tomer Shalev <shalev.tomer@gmail.com> | 2010-04-07 17:22:16 +0000 |
|---|---|---|
| committer | Tomer Shalev <shalev.tomer@gmail.com> | 2010-04-07 17:22:16 +0000 |
| commit | 9e4bd41e416a2d48284947e9ccc09844d3db93ee (patch) | |
| tree | d575c2b63730c4525a79ad42fe511ba03809a651 /apps/plugin.c | |
| parent | 8b904e2bb4e92a6c4cb97db7d2c4e43a624b4e28 (diff) | |
| download | rockbox-9e4bd41e416a2d48284947e9ccc09844d3db93ee.zip rockbox-9e4bd41e416a2d48284947e9ccc09844d3db93ee.tar.gz rockbox-9e4bd41e416a2d48284947e9ccc09844d3db93ee.tar.bz2 rockbox-9e4bd41e416a2d48284947e9ccc09844d3db93ee.tar.xz | |
Text viewer: Fix RTL languages and diacritic characters support
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25515 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index c9f649b..2f54c0d 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -41,6 +41,7 @@ #include "storage.h" #include "pcmbuf.h" #include "errno.h" +#include "diacritic.h" #if CONFIG_CHARGING #include "power.h" @@ -710,6 +711,10 @@ static const struct plugin_api rockbox_api = { appsversion, /* new stuff at the end, sort into place next time the API gets incompatible */ + +#ifdef HAVE_LCD_BITMAP + is_diacritic, +#endif }; int plugin_load(const char* plugin, const void* parameter) |