File diff r25654:e264fd698eb2 → r25655:1030dcb7eb52
src/os/windows/win32.cpp
Show inline comments
 
@@ -471,7 +471,7 @@ void DetermineBasePaths(const char *exe)
 
		wchar_t config_dir[MAX_PATH];
 
		wcsncpy(path, convert_to_fs(_config_file.c_str(), path, lengthof(path)), lengthof(path));
 
		if (!GetFullPathName(path, lengthof(config_dir), config_dir, nullptr)) {
 
			DEBUG(misc, 0, "GetFullPathName failed (%lu)\n", GetLastError());
 
			Debug(misc, 0, "GetFullPathName failed ({})", GetLastError());
 
			_searchpaths[SP_WORKING_DIR].clear();
 
		} else {
 
			std::string tmp(FS2OTTD(config_dir));
 
@@ -483,13 +483,13 @@ void DetermineBasePaths(const char *exe)
 
	}
 

	
 
	if (!GetModuleFileName(nullptr, path, lengthof(path))) {
 
		DEBUG(misc, 0, "GetModuleFileName failed (%lu)\n", GetLastError());
 
		Debug(misc, 0, "GetModuleFileName failed ({})", GetLastError());
 
		_searchpaths[SP_BINARY_DIR].clear();
 
	} else {
 
		wchar_t exec_dir[MAX_PATH];
 
		wcsncpy(path, convert_to_fs(exe, path, lengthof(path)), lengthof(path));
 
		if (!GetFullPathName(path, lengthof(exec_dir), exec_dir, nullptr)) {
 
			DEBUG(misc, 0, "GetFullPathName failed (%lu)\n", GetLastError());
 
			Debug(misc, 0, "GetFullPathName failed ({})", GetLastError());
 
			_searchpaths[SP_BINARY_DIR].clear();
 
		} else {
 
			std::string tmp(FS2OTTD(exec_dir));