diff --git a/artifacts/ddraw.ini b/artifacts/ddraw.ini index a4367651..7e1ea3ef 100644 --- a/artifacts/ddraw.ini +++ b/artifacts/ddraw.ini @@ -1,5 +1,5 @@ ;sfall configuration settings -;v3.8.20 +;v3.8.19.1 [Main] ;Change to 1 if you want to use command line args to tell sfall to use another ini file. @@ -173,7 +173,7 @@ FastMoveFromContainer=0 ;A key to press to open a debug game editor ;Set to 0 to disable, or a DX scancode otherwise -;Requires sfall debugging mode and FalloutClient.exe from the modders pack +;Requires sfall debugging mode to be enabled and FalloutClient.exe from the modders pack DebugEditorKey=0 ;XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX @@ -682,6 +682,7 @@ Enable=0 ;Fallout 2 Debug Patch ;Set to 1 to send debug output to the screen, 2 to a debug.log file, or 3 to both the screen and a debug.log file +;Does not require enabling sfall debugging mode ;While you don't need to create an environment variable, you do still need to set the appropriate lines in fallout2.cfg: ;------- ;[debug] @@ -700,12 +701,12 @@ DebugMode=0 SkipCompatModeCheck=0 ;Set to 1 to skip the executable file size check -;Does not require sfall debugging mode +;Does not require enabling sfall debugging mode SkipSizeCheck=0 ;If you're testing changes to the Fallout exe, you can override the CRC that sfall looks for here ;You can use several hex values, separated by commas -;Does not require sfall debugging mode +;Does not require enabling sfall debugging mode ;ExtraCRC=0x00000000,0x00000000 ;Set to 1 to stop Fallout from deleting non read-only protos at startup @@ -716,6 +717,7 @@ DontDeleteProtos=0 AllowUnsafeScripting=0 ;Set to 1 to hide error messages in debug output when a null value is passed to the function as an object +;Does not require enabling sfall debugging mode HideObjIsNullMsg=0 ;Set to 1 to force critters to display combat float messages diff --git a/sfall/DebugEditor.cpp b/sfall/DebugEditor.cpp index 0512ba66..70cb8f9f 100644 --- a/sfall/DebugEditor.cpp +++ b/sfall/DebugEditor.cpp @@ -359,7 +359,8 @@ void DontDeleteProtosPatch() { } void DebugEditorInit() { - if (!isDebug) return; DebugModePatch(); + + if (!isDebug) return; DontDeleteProtosPatch(); } diff --git a/sfall/version.h b/sfall/version.h index dd78cf17..a466d178 100644 --- a/sfall/version.h +++ b/sfall/version.h @@ -24,14 +24,13 @@ #define VERSION_MAJOR 3 #define VERSION_MINOR 8 -#define VERSION_BUILD 20 -#define VERSION_REV 0 +#define VERSION_BUILD 19 +#define VERSION_REV 1 #ifdef WIN2K -#define VERSION_STRING "3.8.20 win2k" +#define VERSION_STRING "3.8.19.1 win2k" #else -#define VERSION_STRING "3.8.20" +#define VERSION_STRING "3.8.19.1" #endif //#define CHECK_VAL (4) -