Add an ERROR_LOG for GetDirListing not implemented on non-Windows.

This commit is contained in:
KentuckyCompass 2012-12-27 04:15:08 -08:00
parent 3839179a09
commit 928150fbf4

View File

@ -318,6 +318,8 @@ std::vector<PSPFileInfo> DirectoryFileSystem::GetDirListing(std::string path) {
if (!retval)
break;
}
#else
ERROR_LOG(HLE, "GetDirListing not implemented on non-Windows");
#endif
return myVector;
}