From af501556b3dcbfbe6b1d068af756f08bcc973e76 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Wed, 17 Dec 2008 00:57:55 +0000 Subject: [PATCH] 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 --- Source/Core/Common/Src/FileUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index 1714348e9e..65c57b1305 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -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; }