Comment out slightly annoying error message - not even sure that creating a directory that exists should be called an error.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1558 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
5241b51d5f
commit
af501556b3
|
@ -149,7 +149,7 @@ bool CreateDir(const char *path)
|
|||
DWORD error = GetLastError();
|
||||
if (error == ERROR_ALREADY_EXISTS)
|
||||
{
|
||||
PanicAlert("%s already exists", path);
|
||||
// PanicAlert("%s already exists", path);
|
||||
return true;
|
||||
}
|
||||
PanicAlert("Error creating directory %s: %i", path, error);
|
||||
|
@ -162,7 +162,7 @@ bool CreateDir(const char *path)
|
|||
|
||||
if (err == EEXIST)
|
||||
{
|
||||
PanicAlert("%s already exists", path);
|
||||
// PanicAlert("%s already exists", path);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue