mac compilation and standarization fixes

compresses void tc_spinloop() for both unix derivatives and apples to utilize pthread_yield_np();
mac only tweaks to Platform::getUserHomeDirectory() to return the ~/documents directory for parity with windows results
This commit is contained in:
AzaezelX 2021-07-01 14:10:07 -05:00
parent 6fe51cd9c3
commit cddacf1c48
2 changed files with 10 additions and 12 deletions

View file

@ -97,7 +97,7 @@ const char* Platform::getUserDataDirectory()
//-----------------------------------------------------------------------------
const char* Platform::getUserHomeDirectory()
{
return StringTable->insert([[@"~/" stringByStandardizingPath] UTF8String]);
return StringTable->insert([[@"~/Documents" stringByStandardizingPath] UTF8String]);
}
//-----------------------------------------------------------------------------