From 8bd14c733785c32dca2fdb96f0a68a86f13a03d3 Mon Sep 17 00:00:00 2001 From: Marcus Comstedt Date: Sun, 14 Aug 2005 13:44:20 +0000 Subject: Fixed new plugin search code to work with Dreamcast: * Code does case-sensitive comparison with PLUGIN_SUFFIX, so put it in uppercase (as filenames in ISO9660 are required to be uppercase). * There is an assert somewhere which prevents the use of "" as a directory. Use "/" instead... svn-id: r18683 --- base/plugins.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/plugins.cpp') diff --git a/base/plugins.cpp b/base/plugins.cpp index 71f7c1edd2..8f99157322 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -43,9 +43,9 @@ typedef DetectedGameList (*DetectFunc)(const FSList &fslist); #else #ifdef __DC__ #include "dcloader.h" -#define PLUGIN_DIRECTORY "" +#define PLUGIN_DIRECTORY "/" #define PLUGIN_PREFIX "" -#define PLUGIN_SUFFIX ".plg" +#define PLUGIN_SUFFIX ".PLG" #else #ifdef _WIN32 #define PLUGIN_DIRECTORY "" -- cgit v1.2.3