You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix configrules.txt operator bug (contributed by scahp)
#jira UE-81254 #PR #6249 #ue4 #android #rb trivial #ROBOMERGE-SOURCE: CL 9479487 via CL 9479558 #ROBOMERGE-BOT: (v508-9471939) [CL 9479560 by chris babcock in Main branch]
This commit is contained in:
@@ -1541,7 +1541,7 @@ public class GameActivity extends $${gameActivitySuperClass}$$ implements Surfac
|
||||
}
|
||||
else if (CompareType.equals("CMP_GreaterEqual"))
|
||||
{
|
||||
if ((bNumericOperands && (SourceFloat <= MatchFloat)) || (!bNumericOperands && (Source.compareTo(MatchString) < 0)))
|
||||
if ((bNumericOperands && (SourceFloat < MatchFloat)) || (!bNumericOperands && (Source.compareTo(MatchString) < 0)))
|
||||
{
|
||||
bConditionTrue = false;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user