p63 - fixed slight error causing wrong info in fold flop/turn/river in HUD

This commit is contained in:
steffen123 2008-08-20 22:10:29 +01:00
parent 66d938accc
commit 7c50ddd542
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ Please also see db-todo.txt
alpha2 (release by 17Aug)
======
auto import only runs on one file per start
set hud stats row1: hands, VPIP, PFR, PF3B/4B, ST row2: Aggr% (postflop), Fold% (postflop), W$sF, WtSD, W$@SD
set hud stats default row1: hands, VPIP, PFR, PF3B/4B, ST row2: Aggr% (postflop), Fold% (postflop), W$sF, WtSD, W$@SD
make windows use correct language version of Appdata, e.g. Anwendungdaten
stop bulk importer from executing HUD hook
seperate and improve instructions for update

View File

@ -192,9 +192,9 @@ class Sql:
sum(otherRaisedStreet3) AS was_raised_3,
sum(otherRaisedStreet4) AS was_raised_4,
sum(foldToOtherRaisedStreet1) AS f_freq_1,
sum(foldToOtherRaisedStreet1) AS f_freq_2,
sum(foldToOtherRaisedStreet1) AS f_freq_3,
sum(foldToOtherRaisedStreet1) AS f_freq_4,
sum(foldToOtherRaisedStreet2) AS f_freq_2,
sum(foldToOtherRaisedStreet3) AS f_freq_3,
sum(foldToOtherRaisedStreet4) AS f_freq_4,
sum(wonWhenSeenStreet1) AS w_w_s_1,
sum(street1CBChance) AS CB_opp_1,
sum(street2CBChance) AS CB_opp_2,