mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Wii IPC file handling: Made some comments and changes to try to locate the Mario Kart and SSBB errors, in case they are file handling errors
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1327 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f4cae8c9b7
commit
409720b91a
7 changed files with 230 additions and 48 deletions
|
@ -172,6 +172,15 @@ bool Rename(const char *srcFilename, const char *destFilename)
|
|||
return (rename(srcFilename, destFilename) == 0);
|
||||
}
|
||||
|
||||
bool Copy(const char *srcFilename, const char *destFilename)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
return CopyFile(srcFilename, destFilename, FALSE);
|
||||
#else
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string GetUserDirectory()
|
||||
{
|
||||
#ifdef _WIN32
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue