Print errors regardless of build type

This commit is contained in:
Simon Robertshaw 2012-12-16 16:40:29 +00:00
parent 0c5e99aef6
commit 4d546b6818

View File

@ -431,9 +431,7 @@ std::vector<std::string> Client::DirectorySearch(std::string directory, std::str
findFileHandle = _findfirst(fileMatch.c_str(), &currentFile);
if (findFileHandle == -1L)
{
#ifdef DEBUG
printf("Unable to open directory\n");
#endif
return std::vector<std::string>();
}
do