From e18003bb14b963ac1de48eebb77c98b43d743f98 Mon Sep 17 00:00:00 2001 From: Brian Cox Date: Wed, 13 Sep 2017 23:39:50 -0700 Subject: [PATCH] AROS path fix --- src/core/unixfsservices.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/unixfsservices.cpp b/src/core/unixfsservices.cpp index b9b0c96..7ad946b 100644 --- a/src/core/unixfsservices.cpp +++ b/src/core/unixfsservices.cpp @@ -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; }