From 928150fbf4a49ad94a7df32541d0eebe0af3c2b1 Mon Sep 17 00:00:00 2001 From: KentuckyCompass Date: Thu, 27 Dec 2012 04:15:08 -0800 Subject: [PATCH] Add an ERROR_LOG for GetDirListing not implemented on non-Windows. --- Core/FileSystems/DirectoryFileSystem.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/FileSystems/DirectoryFileSystem.cpp b/Core/FileSystems/DirectoryFileSystem.cpp index e076061c87..4e01590805 100644 --- a/Core/FileSystems/DirectoryFileSystem.cpp +++ b/Core/FileSystems/DirectoryFileSystem.cpp @@ -318,6 +318,8 @@ std::vector DirectoryFileSystem::GetDirListing(std::string path) { if (!retval) break; } +#else + ERROR_LOG(HLE, "GetDirListing not implemented on non-Windows"); #endif return myVector; }