diff --git a/artifacts/ddraw.ini b/artifacts/ddraw.ini index 780f6ca7..b4012a85 100644 --- a/artifacts/ddraw.ini +++ b/artifacts/ddraw.ini @@ -1,5 +1,5 @@ ;sfall configuration settings -;v4.3.5 +;v4.3.5.1 [Main] ;Set to 1 to enable the built-in High Resolution Patch mode that is similar to the hi-res patch by Mash @@ -536,8 +536,11 @@ AnimationsAtOnceLimit=120 ;Set to 1 to remove the limits that stop the player rolling critical successes/misses in the first few days of game time RemoveCriticalTimelimits=0 -;Change the colour of the font used on the main menu for the Fallout/sfall version number and copyright text +;Change the colour of the font used on the main menu for the Fallout/sfall version string and copyright text ;It's the last byte ('3C' by default) that picks the colour used. The first byte supplies additional flags for this option +;1 - change the colour for the version string only +;2 - underline text for the version string +;4 - use monospace font for the version string ;MainMenuFontColour=0x00003C ;Change the colour of the font used on the main menu for the button text ;MainMenuBigFontColour=0x3C diff --git a/sfall/Modules/MiscPatches.cpp b/sfall/Modules/MiscPatches.cpp index bd6ca2ae..80add436 100644 --- a/sfall/Modules/MiscPatches.cpp +++ b/sfall/Modules/MiscPatches.cpp @@ -769,7 +769,7 @@ static void UseWalkDistancePatch() { int distance = IniReader::GetConfigInt("Misc", "UseWalkDistance", 3) + 2; if (distance > 1 && distance < 5) { dlog("Applying walk distance for using objects patch.", DL_INIT); - SafeWriteBatch(distance, {0x411FF0, 0x4121C4, 0x412475, 0x412906}); // default is 5 + SafeWriteBatch(distance, {0x411E41, 0x411FF0, 0x4121C4, 0x412475, 0x412906}); // default is 5 dlogr(" Done", DL_INIT); } } diff --git a/sfall/version.h b/sfall/version.h index a693b455..089970d2 100644 --- a/sfall/version.h +++ b/sfall/version.h @@ -25,6 +25,6 @@ #define VERSION_MAJOR 4 #define VERSION_MINOR 3 #define VERSION_BUILD 5 -#define VERSION_REV 0 +#define VERSION_REV 1 -#define VERSION_STRING "4.3.5" +#define VERSION_STRING "4.3.5.1"