mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-03 04:19:36 -06:00
added check if "file open dialog" changes the working directory. i dunno why but some times the file open dialog changes my working directory... the code is for further investigations
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2408 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -547,4 +547,10 @@ void GetCurrentDirectory(std::string& _rDirectory)
|
||||
_rDirectory = getcwd(tmpBuffer, MAX_PATH);
|
||||
}
|
||||
|
||||
bool SetCurrentDirectory(const std::string& _rDirectory)
|
||||
{
|
||||
return chdir(_rDirectory.c_str()) == 0;
|
||||
}
|
||||
|
||||
|
||||
} // namespace
|
||||
|
Reference in New Issue
Block a user