mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
fix some path issues on OSX, also libao for osx only supports 44.1kHz...awesome...who calls writing the CoreAudio backend so we can kill libao? :D
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4311 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -101,7 +101,11 @@ void CFileSearch::FindFiles(const std::string& _searchString, const std::string&
|
||||
|
||||
if ( (s.size() > ext.size()) && (!strcasecmp(s.substr(s.size() - ext.size()).c_str(), ext.c_str())) )
|
||||
{
|
||||
#ifdef __APPLE__
|
||||
std::string full_name = _strPath + s;
|
||||
#else
|
||||
std::string full_name = _strPath + "/" + s;
|
||||
#endif
|
||||
m_FileNames.push_back(full_name);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user