diff --git a/artifacts/ddraw.ini b/artifacts/ddraw.ini index acaff422..2b6573db 100644 --- a/artifacts/ddraw.ini +++ b/artifacts/ddraw.ini @@ -1,5 +1,5 @@ ;sfall configuration settings -;v3.8.37 +;v3.8.37.1 [Main] ;Set to 1 if you want to use command line arguments to tell sfall to use another ini file diff --git a/sfall/Modules/LoadOrder.cpp b/sfall/Modules/LoadOrder.cpp index 525f9110..ea34b053 100644 --- a/sfall/Modules/LoadOrder.cpp +++ b/sfall/Modules/LoadOrder.cpp @@ -277,7 +277,7 @@ static void GetExtraPatches() { } // Remove first duplicates size_t size = patchFiles.size(); - for (size_t i = 1; i < size; ++i) { + for (size_t i = 0; i < size; ++i) { for (size_t j = size - 1; j > i; --j) { if (patchFiles[j] == patchFiles[i]) { patchFiles[i].clear(); diff --git a/sfall/version.h b/sfall/version.h index cba77178..5a94c38d 100644 --- a/sfall/version.h +++ b/sfall/version.h @@ -25,6 +25,6 @@ #define VERSION_MAJOR 3 #define VERSION_MINOR 8 #define VERSION_BUILD 37 -#define VERSION_REV 0 +#define VERSION_REV 1 -#define VERSION_STRING "3.8.37" +#define VERSION_STRING "3.8.37.1"