Use own Boost-Unordered

This commit is contained in:
Inori 2019-12-17 19:13:10 -05:00
parent 5255d56cbc
commit 00360e89eb
4 changed files with 8 additions and 1 deletions

3
.gitmodules vendored
View file

@ -0,0 +1,3 @@
[submodule "boost-unordered"]
path = boost-unordered
url = https://github.com/inori-z/mkxp-z-boost-unordered

1
boost-unordered Submodule

@ -0,0 +1 @@
Subproject commit 873377396eb173eebba30b753cb26d18abc2861d

View file

@ -36,6 +36,9 @@ if discord_libpath != ''
endif
endif
# BOOST UNORDERED
global_include_dirs += include_directories('boost-unordered')
# ====================
# Main source
# ====================

View file

@ -613,6 +613,7 @@ openReadEnumCB(void *d, const char *dirpath, const char *filename)
PHYSFS_File *phys = PHYSFS_openRead(fullPath);
if (!phys)
{
/* Failing to open this file here means there must
@ -623,7 +624,6 @@ openReadEnumCB(void *d, const char *dirpath, const char *filename)
return PHYSFS_ENUM_ERROR;
}
initReadOps(phys, data.ops, false);
const char *ext = findExt(filename);