mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
dolphinwx and debuggerwx can now be compiled with unicode
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3906 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -488,7 +488,7 @@ bool DeleteDirRecursively(const char *directory)
|
||||
}
|
||||
|
||||
// Returns the current directory, caller should free
|
||||
const char *GetCurrentDirectory()
|
||||
const char *GetCurrentDir()
|
||||
{
|
||||
const char *dir;
|
||||
// Get the current working directory (getcwd uses malloc)
|
||||
@ -502,7 +502,7 @@ const char *GetCurrentDirectory()
|
||||
}
|
||||
|
||||
// Sets the current directory to the given directory
|
||||
bool SetCurrentDirectory(const char *_rDirectory)
|
||||
bool SetCurrentDir(const char *_rDirectory)
|
||||
{
|
||||
return __chdir(_rDirectory) == 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user