diff --git a/src/app.c b/src/app.c

index 4eeae94e..a368767a 100644

--- a/src/app.c

+++ b/src/app.c

@@ -219,6 +219,14 @@ static const char *dataDir_App_(void) {

 if (configHome) {

     return concatPath_CStr(configHome, "lagrange");

 }

+#endif

+#if defined (iPlatformMsys)

+ /* Check for a portable userdata directory. */

+ iApp *d = &app_;

+ const char *userDir = concatPath_CStr(cstr_String(d->execPath), "..\userdata");

+ if (fileExistsCStr_FileInfo(userDir)) {

+ return userDir;

+ }

#endif

 return defaultDataDir_App_;

}

@@ -377,10 +385,6 @@ static uint32_t checkAsleep_App_(uint32_t interval, void *param) {

#endif



static void init_App_(iApp *d, int argc, char **argv) {

- const iBool isFirstRun = !fileExistsCStr_FileInfo(cleanedPath_CStr(dataDir_App_()));

- d->isFinishedLaunching = iFalse;

- d->launchCommands = new_StringList();

- iZap(d->lastDropTime);

 init_CommandLine(&d->args, argc, argv);

 /* Where was the app started from? We ask SDL first because the command line alone is

    not a reliable source of this information, particularly when it comes to different

@@ -395,6 +399,10 @@ static void init_App_(iApp *d, int argc, char **argv) {

     }

     SDL_free(exec);

 }

+ const iBool isFirstRun = !fileExistsCStr_FileInfo(cleanedPath_CStr(dataDir_App_()));

+ d->isFinishedLaunching = iFalse;

+ d->launchCommands = new_StringList();

+ iZap(d->lastDropTime);

 init_SortedArray(&d->tickers, sizeof(iTicker), cmp_Ticker_);

 d->lastTickerTime         = SDL_GetTicks();

 d->elapsedSinceLastTicker = 0;

Proxy Information
Original URL
gemini://git.skyjake.fi/lagrange/work%2Fv1.7/pcdiff/a9cbbb1d5c5e878ce292fa2e1d0c338dbe762502
Status Code
Success (20)
Meta
text/plain
Capsule Response Time
307.58477 milliseconds
Gemini-to-HTML Time
0.651837 milliseconds

This content has been proxied by September (ba2dc).