Skip to content

Commit

Permalink
v3.2.4.2 Merge pull request #1019 from Die4Ever/develop
Browse files Browse the repository at this point in the history
v3.2.4.2
  • Loading branch information
Die4Ever authored Oct 29, 2024
2 parents 764ccc9 + 3a60463 commit 407ef03
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions DXRCore/DeusEx/Classes/DXRVersion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ simulated static function CurrentVersion(optional out int major, optional out in
major=3;
minor=2;
patch=4;
build=1;//build can't be higher than 99
build=2;//build can't be higher than 99
}

simulated static function bool VersionIsStable()
{
return false;
return true;
}

simulated static function string VersionString(optional bool full)
{
local int major,minor,patch,build;
local string status;

status = "Alpha";
status = "";

if(status!="") {
status = " " $ status;
Expand Down
3 changes: 2 additions & 1 deletion DXRModules/DeusEx/Classes/DXRFlagsBase.uc
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,8 @@ function ExtendedTests()
teststring(ToHex(0x100F), "100F", "ToHex(0x100F)");
teststring(ToHex(0x9001F), "9001F", "ToHex(0x9001F)");
testbool(VersionIsStable(), VersionString()=="", "VersionIsStable() matches version text, " $ text);
text = VersionString();
testbool(VersionIsStable(), InStr(text, "Alpha")==-1 && InStr(text, "Beta")==-1, "VersionIsStable() matches version text, " $ text);
testbool( #bool(debug), false, "debug is disabled");
testbool( #bool(locdebug), false, "locdebug is disabled");
testbool( #bool(debugnames), false, "debugnames is disabled");
Expand Down
Binary file modified DeusEx.u
Binary file not shown.
Binary file modified GMDXRandomizer.u
Binary file not shown.
Binary file modified HXRandomizer.u
Binary file not shown.
Binary file modified RevRandomizer.u
Binary file not shown.
Binary file modified VMDRandomizer.u
Binary file not shown.

0 comments on commit 407ef03

Please sign in to comment.