diff options
author | Marcus Comstedt | 2005-08-14 13:44:20 +0000 |
---|---|---|
committer | Marcus Comstedt | 2005-08-14 13:44:20 +0000 |
commit | 8bd14c733785c32dca2fdb96f0a68a86f13a03d3 (patch) | |
tree | 1521c6ca72ba895ace41ff019e18081136305c6b | |
parent | 18febcb94d9312d9c025e647168364e4ed9ff53a (diff) | |
download | scummvm-rg350-8bd14c733785c32dca2fdb96f0a68a86f13a03d3.tar.gz scummvm-rg350-8bd14c733785c32dca2fdb96f0a68a86f13a03d3.tar.bz2 scummvm-rg350-8bd14c733785c32dca2fdb96f0a68a86f13a03d3.zip |
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
-rw-r--r-- | base/plugins.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 "" |