Skip to content

Commit

Permalink
v3.2.4.1 Alpha (with bingocheat)
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Oct 29, 2024
1 parent dd947a5 commit 523dfe9
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions DXRCore/DeusEx/Classes/DXRVersion.uc
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ simulated static function CurrentVersion(optional out int major, optional out in
{
major=3;
minor=2;
patch=3;
build=4;//build can't be higher than 99
patch=4;
build=1;//build can't be higher than 99
}

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

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

status = "";
status = "Alpha";

if(status!="") {
status = " " $ status;
Expand Down
3 changes: 1 addition & 2 deletions DXRModules/DeusEx/Classes/DXRFlagsBase.uc
Original file line number Diff line number Diff line change
Expand Up @@ -1215,8 +1215,7 @@ function ExtendedTests()
teststring(ToHex(0x100F), "100F", "ToHex(0x100F)");
teststring(ToHex(0x9001F), "9001F", "ToHex(0x9001F)");
text = VersionString();
testbool(VersionIsStable(), InStr(text, "Alpha")==-1 && InStr(text, "Beta")==-1, "VersionIsStable() matches version text, " $ text);
testbool(VersionIsStable(), VersionString()=="", "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 523dfe9

Please sign in to comment.