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:
hrydgard 2008-12-17 00:57:55 +00:00
parent 5241b51d5f
commit af501556b3
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}