Small Redox path tweaks

This commit is contained in:
Brian Cox 2017-09-22 23:40:36 -07:00
parent 9b6750a98c
commit ea885446c2
2 changed files with 3 additions and 1 deletions

View File

@ -846,7 +846,7 @@ bool cUnixFSServices::FullPath( TSTRING& strFullPath, const TSTRING& strRelPathC
d.TraceDebug("FullPath is now %s\n", strFullPath.c_str());
}
#if IS_AROS
#if IS_AROS || IS_REDOX
strFullPath = cDevicePath::AsNative(strFullPath);
#endif

View File

@ -266,6 +266,8 @@ static void util_InitTempDirectory(const cConfigFile& cf)
temp_directory = "/dev/c/temp/";
#elif IS_RISCOS
temp_directory = "/!BOOT/Resources/!Scrap/ScrapDirs/ScrapDir";
#elif IS_REDOX
temp_directory = "/file/tmp/";
#else
temp_directory = "/tmp/";
#endif