summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/app.c b/src/app.c
index b5eb5688..ae0633e5 100644
--- a/src/app.c
+++ b/src/app.c
@@ -64,6 +64,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
64#if defined (iPlatformAppleDesktop) 64#if defined (iPlatformAppleDesktop)
65# include "macos.h" 65# include "macos.h"
66#endif 66#endif
67#if defined (iPlatformAppleMobile)
68# include "ios.h"
69#endif
67#if defined (iPlatformMsys) 70#if defined (iPlatformMsys)
68# include "win32.h" 71# include "win32.h"
69#endif 72#endif
@@ -465,6 +468,9 @@ static void init_App_(iApp *d, int argc, char **argv) {
465#if defined (iPlatformAppleDesktop) 468#if defined (iPlatformAppleDesktop)
466 setupApplication_MacOS(); 469 setupApplication_MacOS();
467#endif 470#endif
471#if defined (iPlatformAppleMobile)
472 setupApplication_iOS();
473#endif
468 init_Keys(); 474 init_Keys();
469 loadPrefs_App_(d); 475 loadPrefs_App_(d);
470 load_Keys(dataDir_App_()); 476 load_Keys(dataDir_App_());