added temporary debugging to ReadMapList()

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401784
This commit is contained in:
David Anderson 2007-12-10 03:14:54 +00:00
parent 5f81dd7be5
commit ff15a84e7c

View File

@ -524,6 +524,10 @@ private:
if ((fp = fopen(pMapList->path, "rt")) == NULL)
{
char error_msg[255];
strncopy(error_msg, "Unknown error", sizeof(error_msg));
g_LibSys.GetPlatformError(error_msg, sizeof(error_msg));
g_Logger.LogError("ReadMapList(): Could not open file \"%s\": %s\n", pMapList->path, error_msg);
return false;
}