summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Klichowicz <emkael@tlen.pl>2024-02-06 11:12:04 +0100
committerMichał Klichowicz <emkael@tlen.pl>2024-02-06 11:12:04 +0100
commitc88acf0db2f15280c2b399d5b3ac5ceabc3897ed (patch)
tree0c19e6e102a6ae1d61f0633248f628ef014474a1
parent3d49a9d132d8cad2b65f00a344ddae80f38f78a0 (diff)
Fix proper gathering of denomination/declarer in simple analysis mode
-rw-r--r--Analizator9000/Analizator9000/Form1.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Analizator9000/Analizator9000/Form1.cs b/Analizator9000/Analizator9000/Form1.cs
index 9fcf42c..58ae368 100644
--- a/Analizator9000/Analizator9000/Form1.cs
+++ b/Analizator9000/Analizator9000/Form1.cs
@@ -383,7 +383,6 @@ namespace Analizator9000
// depending on the button of event origin
if (sender.GetHashCode().Equals(this.analyzeButton.GetHashCode()))
{
- this.ac = new Accumulator(deals, cons, this);
foreach (int i in Enumerable.Range(1, 5))
{
foreach (int j in Enumerable.Range(1, 4))
@@ -394,6 +393,7 @@ namespace Analizator9000
}
}
}
+ this.ac = new Accumulator(deals, cons, this);
}
else
{