Merge branch 'master' of github.com:/pokerth/pokerth
This commit is contained in:
@@ -3452,7 +3452,7 @@ int LocalPlayer::flopCardsValue(int* cards)
|
||||
return (71000 + temp*100 + array[j1][1]);
|
||||
} else {
|
||||
// Test auf Straight-Flush-Ausnahme 5-4-3-2-A
|
||||
if(array[j1][1] == 12 && (array[j1+1][1]<=3 || (array[j1+2][1]<=3 && array[j1][0]==array[j1+4][0]))) {
|
||||
if(array[j1][1] == 12 && (array[j1+1][1]<=3 || (j1==0 && array[j1+2][1]<=3 && array[j1][0]==array[j1+4][0]))) {
|
||||
// cout << "Straight-Flush-Draw Ass unten";
|
||||
for(j2=0; j2<4; j2++) {
|
||||
if(array[j1+j2][2] <= 1) temp++;
|
||||
|
||||
@@ -78,6 +78,7 @@ settingsDialogImpl::settingsDialogImpl(QWidget *parent, ConfigFile *c, selectAva
|
||||
comboBox_switchLanguage->addItem(QString(tr("English")+" "+QString::fromUtf8("(English)")),"en");
|
||||
comboBox_switchLanguage->addItem(QString(tr("Finnish")+" "+QString::fromUtf8("(suomi)")),"fi");
|
||||
comboBox_switchLanguage->addItem(QString(tr("French")+" "+QString::fromUtf8("(français)")),"fr");
|
||||
comboBox_switchLanguage->addItem(QString(tr("Galician")+" "+QString::fromUtf8("(Galego)")),"gl");
|
||||
comboBox_switchLanguage->addItem(QString(tr("German")+" "+QString::fromUtf8("(Deutsch)")),"de");
|
||||
comboBox_switchLanguage->addItem(QString(tr("Greek")+" "+QString::fromUtf8("(Ελληνικά)")),"gr");
|
||||
comboBox_switchLanguage->addItem(QString(tr("Hungarian")+" "+QString::fromUtf8("(Magyar)")),"hu");
|
||||
|
||||
Reference in New Issue
Block a user