diff --git a/CMakeLists.txt b/CMakeLists.txt index 57355f0..7b8462d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ if(APPLE) endif() set(NSTOOL_MAJOR 1) set(NSTOOL_MINOR 0) -set(NSTOOL_PATCHLEVEL 3) +set(NSTOOL_PATCHLEVEL 4) if(NOT MSVC_IDE AND NOT XCODE_VERSION AND NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel." FORCE) endif() diff --git a/README.md b/README.md index b858b40..f4bc0e1 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ - v1.0.1 @ 2018.08.27 - Support nso - v1.0.2 @ 2019.04.03 - Fix nso hash - v1.0.3 @ 2019.04.21 - Support extract and create nso +- v1.0.4 @ 2019.05.25 - Fix remap ignore invalid ## Platforms diff --git a/src/romfs.cpp b/src/romfs.cpp index 76586f9..a2bdc7b 100644 --- a/src/romfs.cpp +++ b/src/romfs.cpp @@ -288,7 +288,7 @@ void CRomFs::buildIgnoreList() if (StartWith(sTxt, "//")) { vector vIngoreTag = Split(sTxt.c_str() + strlen("//"), ":"); - if (vIngoreTag.size() == 1 && EndWith(sTxt, ":")) + if (vIngoreTag.size() == 2 && vIngoreTag[1].empty()) { vIngoreTag[0] = Trim(vIngoreTag[0]); if (vIngoreTag[0] == "ignore")