diff options
Diffstat (limited to 'android.cpp')
-rw-r--r-- | android.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/android.cpp b/android.cpp index 66bc6cf3e..1e99a5ced 100644 --- a/android.cpp +++ b/android.cpp @@ -13,13 +13,19 @@ extern "C" { 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; +double system_divelist_default_font_size = 8.0; void subsurface_OS_pref_setup(void) { // nothing } +bool subsurface_ignore_font(const char *font) +{ + // there are no old default fonts that we would want to ignore + return false; +} + const char *system_default_filename(void) { /* Replace this when QtCore/QStandardPaths getExternalStorageDirectory landed */ |