diff --git a/SheepShaver/src/Unix/main_unix.cpp b/SheepShaver/src/Unix/main_unix.cpp index 2020f2d5..9c503e24 100755 --- a/SheepShaver/src/Unix/main_unix.cpp +++ b/SheepShaver/src/Unix/main_unix.cpp @@ -748,6 +748,11 @@ int main(int argc, char **argv) #endif #endif +#if __MACOSX__ + extern void set_current_directory(); + set_current_directory(); +#endif + #ifdef USE_SDL // Initialize SDL system if (!init_sdl()) @@ -1031,11 +1036,6 @@ int main(int argc, char **argv) goto quit; } -#if __MACOSX__ - extern void set_current_directory(); - set_current_directory(); -#endif - // Load Mac ROM if (!load_mac_rom()) goto quit;