diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java index 287631fcc..6857f73d9 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/graph/Graph.java @@ -2014,10 +2014,10 @@ public class Graph { stack.push(new AndItem(null, prevExpr, rightSide)); } else if (prevExpr instanceof FalseItem) { isIf = false; - stack.push(new OrItem(null, leftSide, rightSide)); + stack.push(new AndItem(null, leftSide, rightSide)); } else if (prevExpr instanceof TrueItem) { isIf = false; - stack.push(new AndItem(null, leftSide, rightSide)); + stack.push(new OrItem(null, leftSide, rightSide)); } else { //:-( }