mirror of https://github.com/OpenTTD/OpenTTD
(svn r15113) -Codechange: unify calling ScanForTarFiles when determining the paths.
parent
c333790dd8
commit
102cc11ee9
|
@ -882,8 +882,6 @@ extern void cocoaSetApplicationBundleDir();
|
||||||
#else
|
#else
|
||||||
_searchpaths[SP_APPLICATION_BUNDLE_DIR] = NULL;
|
_searchpaths[SP_APPLICATION_BUNDLE_DIR] = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ScanForTarFiles();
|
|
||||||
}
|
}
|
||||||
#endif /* defined(WIN32) || defined(WINCE) */
|
#endif /* defined(WIN32) || defined(WINCE) */
|
||||||
|
|
||||||
|
@ -952,6 +950,8 @@ void DeterminePaths(const char *exe)
|
||||||
|
|
||||||
free(save_dir);
|
free(save_dir);
|
||||||
free(autosave_dir);
|
free(autosave_dir);
|
||||||
|
|
||||||
|
ScanForTarFiles();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1045,7 +1045,6 @@ char *getcwd(char *buf, size_t size)
|
||||||
|
|
||||||
void DetermineBasePaths(const char *exe)
|
void DetermineBasePaths(const char *exe)
|
||||||
{
|
{
|
||||||
extern void ScanForTarFiles();
|
|
||||||
char tmp[MAX_PATH];
|
char tmp[MAX_PATH];
|
||||||
TCHAR path[MAX_PATH];
|
TCHAR path[MAX_PATH];
|
||||||
#ifdef WITH_PERSONAL_DIR
|
#ifdef WITH_PERSONAL_DIR
|
||||||
|
@ -1091,8 +1090,6 @@ void DetermineBasePaths(const char *exe)
|
||||||
|
|
||||||
_searchpaths[SP_INSTALLATION_DIR] = NULL;
|
_searchpaths[SP_INSTALLATION_DIR] = NULL;
|
||||||
_searchpaths[SP_APPLICATION_BUNDLE_DIR] = NULL;
|
_searchpaths[SP_APPLICATION_BUNDLE_DIR] = NULL;
|
||||||
|
|
||||||
ScanForTarFiles();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue