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
This commit is contained in:
Marcus Comstedt 2005-08-14 13:44:20 +00:00
parent 18febcb94d
commit 8bd14c7337

View File

@ -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 ""