- fixed Linux IWAD search thanks to a suggestion by Chris on the forum. Moved the search macros to i_system.h for both platforms. Neither are compatible with the other. This can be improved upon later, but for now, at least the major compile issue is fixed.

This commit is contained in:
Rachael Alexanderson 2017-08-19 22:10:45 -04:00
commit b7d26b3fa1
3 changed files with 9 additions and 9 deletions

View file

@ -414,12 +414,6 @@ void FIWadManager::CollectSearchPaths()
//
//==========================================================================
#ifdef _WIN32
#define ENTRYNAME findstate.Name
#else
#define ENTRYNAME findstate.namelist[0]->d_name
#endif
void FIWadManager::AddIWADCandidates(const char *dir)
{
void *handle;
@ -432,18 +426,18 @@ void FIWadManager::AddIWADCandidates(const char *dir)
{
if (!(I_FindAttr(&findstate) & FA_DIREC))
{
auto p = strrchr(ENTRYNAME, '.');
auto p = strrchr(FS_ENTRYNAME, '.');
if (p != nullptr)
{
// special IWAD extension.
if (!stricmp(p, ".iwad") || !stricmp(p, ".ipk3") || !stricmp(p, "ipk7"))
{
mFoundWads.Push(FFoundWadInfo{ slasheddir + ENTRYNAME, "", -1 });
mFoundWads.Push(FFoundWadInfo{ slasheddir + FS_ENTRYNAME, "", -1 });
}
}
for (auto &name : mIWadNames)
{
if (!stricmp(name, ENTRYNAME))
if (!stricmp(name, FS_ENTRYNAME))
{
mFoundWads.Push(FFoundWadInfo{ slasheddir + name, "", -1 });
}