diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-04-19 20:17:24 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-04-19 20:17:24 +0000 |
| commit | 2fd7c3c8285c9e03516b5069a35dada6a7154f77 (patch) | |
| tree | 8d8ad534ca9802266e8427aea57ded9db39c4eed /apps/main.c | |
| parent | 5d173ead6ef86886cf5d87b36213d1e357a146c2 (diff) | |
| download | rockbox-2fd7c3c8285c9e03516b5069a35dada6a7154f77.zip rockbox-2fd7c3c8285c9e03516b5069a35dada6a7154f77.tar.gz rockbox-2fd7c3c8285c9e03516b5069a35dada6a7154f77.tar.bz2 rockbox-2fd7c3c8285c9e03516b5069a35dada6a7154f77.tar.xz | |
Make the simulator work with unicode filenames on windows. This includes both file operations and console (debug) output. Note that the console window _must_ be configured to use a truetype font for proper unicode display.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13211 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
| -rw-r--r-- | apps/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 68f5588..ab7f9f3 100644 --- a/apps/main.c +++ b/apps/main.c @@ -253,6 +253,9 @@ static void init(void) button_init(); backlight_init(); lang_init(); +#ifdef DEBUG + debug_init(); +#endif /* Must be done before any code uses the multi-screen APi */ screen_access_init(); gui_syncstatusbar_init(&statusbars); |