diff --git a/artifacts/ddraw.ini b/artifacts/ddraw.ini index f79815b9..c15a1a8f 100644 --- a/artifacts/ddraw.ini +++ b/artifacts/ddraw.ini @@ -1,5 +1,5 @@ ;sfall configuration settings -;v3.8.35 +;v3.8.35.1 [Main] ;Set to 1 if you want to use command line arguments to tell sfall to use another ini file @@ -527,6 +527,9 @@ RemoveCriticalTimelimits=0 ;Change the colour of the font used on the main menu for the Fallout/sfall version number 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 09baae76..a0fb4907 100644 --- a/sfall/Modules/MiscPatches.cpp +++ b/sfall/Modules/MiscPatches.cpp @@ -748,7 +748,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); - const DWORD walkDistanceAddr[] = {0x411FF0, 0x4121C4, 0x412475, 0x412906}; + const DWORD walkDistanceAddr[] = {0x411E41, 0x411FF0, 0x4121C4, 0x412475, 0x412906}; SafeWriteBatch(distance, walkDistanceAddr); // default is 5 dlogr(" Done", DL_INIT); } diff --git a/sfall/version.h b/sfall/version.h index d8206141..f382e93c 100644 --- a/sfall/version.h +++ b/sfall/version.h @@ -25,6 +25,6 @@ #define VERSION_MAJOR 3 #define VERSION_MINOR 8 #define VERSION_BUILD 35 -#define VERSION_REV 0 +#define VERSION_REV 1 -#define VERSION_STRING "3.8.35" +#define VERSION_STRING "3.8.35.1"