Small Redox path tweaks
This commit is contained in:
parent
9b6750a98c
commit
ea885446c2
|
@ -846,7 +846,7 @@ bool cUnixFSServices::FullPath( TSTRING& strFullPath, const TSTRING& strRelPathC
|
||||||
d.TraceDebug("FullPath is now %s\n", strFullPath.c_str());
|
d.TraceDebug("FullPath is now %s\n", strFullPath.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
#if IS_AROS
|
#if IS_AROS || IS_REDOX
|
||||||
strFullPath = cDevicePath::AsNative(strFullPath);
|
strFullPath = cDevicePath::AsNative(strFullPath);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -266,6 +266,8 @@ static void util_InitTempDirectory(const cConfigFile& cf)
|
||||||
temp_directory = "/dev/c/temp/";
|
temp_directory = "/dev/c/temp/";
|
||||||
#elif IS_RISCOS
|
#elif IS_RISCOS
|
||||||
temp_directory = "/!BOOT/Resources/!Scrap/ScrapDirs/ScrapDir";
|
temp_directory = "/!BOOT/Resources/!Scrap/ScrapDirs/ScrapDir";
|
||||||
|
#elif IS_REDOX
|
||||||
|
temp_directory = "/file/tmp/";
|
||||||
#else
|
#else
|
||||||
temp_directory = "/tmp/";
|
temp_directory = "/tmp/";
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue