show a msgbox of where I'm running from on osx

This commit is contained in:
UnknownShadow200 2019-10-03 08:50:38 +10:00
parent 5ca7aab58b
commit baf8a1dbc7

View File

@ -1778,6 +1778,7 @@ ReturnCode Platform_SetDefaultCurrentDirectory(void) {
}
#ifdef CC_BUILD_OSX
Window_ShowDialog("(DEBUG) Exe path is", path);
static const String bundle = String_FromConst(".app/Contents/MacOS/");
String raw = String_Init(path, len, 0);
@ -1791,6 +1792,9 @@ ReturnCode Platform_SetDefaultCurrentDirectory(void) {
#endif
path[len] = '\0';
#ifdef CC_BUILD_OSX
Window_ShowDialog("(DEBUG) And my folder is", path);
#endif
return chdir(path) == -1 ? errno : 0;
}
#endif