ios export dir support

This commit is contained in:
Mark Kim 2021-03-23 21:15:50 -04:00
parent 55ca7ed09f
commit 4575f184a5
5 changed files with 50 additions and 37 deletions

View file

@ -26,6 +26,7 @@
#define IOS_FONTS_PATH "../Library/Fonts"
#define IOS_PREFERENCES_PATH "../Library/Application Support/TuxPaint"
#define IOS_PICTURES_PATH "../Documents"
const char *apple_fontsPath(void)
@ -44,3 +45,9 @@ const char *apple_globalPreferencesPath(void)
{
return IOS_PREFERENCES_PATH;
}
const char *apple_picturesPath(void)
{
return IOS_PICTURES_PATH;
}