Fix android font config

In e893f6bd9d ("Use the Windows default
font on Windows 7 and 8/8.1") font config was changed, but the android
font config wasn't changed. This updates the android font config to
match the new way.

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2014-08-24 23:43:42 +02:00 committed by Dirk Hohndel
parent 7575eb44df
commit 65eec59739

View file

@ -11,9 +11,15 @@
extern "C" {
const char system_divelist_default_font[] = "Roboto";
const char android_system_divelist_default_font[] = "Roboto";
const char *system_divelist_default_font = android_system_divelist_default_font;
const int system_divelist_default_font_size = 8;
void subsurface_OS_pref_setup(void)
{
// nothing
}
const char *system_default_filename(void)
{
/* Replace this when QtCore/QStandardPaths getExternalStorageDirectory landed */