mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-22 01:57:16 +00:00
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:
parent
18febcb94d
commit
8bd14c7337
@ -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 ""
|
||||
|
Loading…
x
Reference in New Issue
Block a user