AROS path fix

This commit is contained in:
Brian Cox 2017-09-13 23:39:50 -07:00
parent f67c370f29
commit e18003bb14
1 changed files with 4 additions and 0 deletions

View File

@ -829,6 +829,10 @@ bool cUnixFSServices::FullPath( TSTRING& strFullPath, const TSTRING& strRelPathC
d.TraceDebug("FullPath is now %s\n", strFullPath.c_str());
}
#if IS_AROS
strFullPath = cDevicePath::AsNative(strFullPath);
#endif
d.TraceDebug("Done, returning %s\n", strFullPath.c_str());
return true;
}