Fix runtime issues,

This commit is contained in:
JuiceyDev
2026-03-05 09:19:40 +01:00
parent d0e7106cdf
commit 5583e04e0f
9 changed files with 169 additions and 44 deletions

View File

@@ -56,7 +56,7 @@ const char *wstringtofilename(const wstring& name)
for(unsigned int i = 0; i < name.length(); i++ )
{
wchar_t c = name[i];
#if defined __PS3__ || defined __ORBIS__
#if defined __PS3__ || defined __ORBIS__ || defined __linux__
if(c=='\\') c='/';
#else
if(c=='/') c='\\';