mirror of
https://github.com/sfall-team/sfall.git
synced 2026-07-27 16:52:34 -07:00
Code correction to LoadOrder.cpp
Updated version number.
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
;sfall configuration settings
|
;sfall configuration settings
|
||||||
;v4.3.7
|
;v4.3.7.1
|
||||||
|
|
||||||
[Main]
|
[Main]
|
||||||
;Set to 1 to enable the built-in High Resolution Patch mode that is similar to the hi-res patch by Mash
|
;Set to 1 to enable the built-in High Resolution Patch mode that is similar to the hi-res patch by Mash
|
||||||
|
|||||||
@@ -310,7 +310,7 @@ static void GetExtraPatches() {
|
|||||||
//}
|
//}
|
||||||
// Remove first duplicates
|
// Remove first duplicates
|
||||||
size_t size = patchFiles.size();
|
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) {
|
for (size_t j = size - 1; j > i; --j) {
|
||||||
if (patchFiles[j] == patchFiles[i]) {
|
if (patchFiles[j] == patchFiles[i]) {
|
||||||
patchFiles[i].clear();
|
patchFiles[i].clear();
|
||||||
|
|||||||
+2
-2
@@ -25,6 +25,6 @@
|
|||||||
#define VERSION_MAJOR 4
|
#define VERSION_MAJOR 4
|
||||||
#define VERSION_MINOR 3
|
#define VERSION_MINOR 3
|
||||||
#define VERSION_BUILD 7
|
#define VERSION_BUILD 7
|
||||||
#define VERSION_REV 0
|
#define VERSION_REV 1
|
||||||
|
|
||||||
#define VERSION_STRING "4.3.7"
|
#define VERSION_STRING "4.3.7.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user