1
0
Fork 0

GUI: fixed dumb compile error in AssembleDialog

This commit is contained in:
mrexodia 2017-08-03 16:51:18 +02:00
parent 6f38e2b0f5
commit a965c2b8a6
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ AssembleDialog::AssembleDialog(QWidget* parent) :
duint setting;
if(BridgeSettingGetUint("Engine", "Assembler", &setting))
{
else if(setting == 1 || setting == 2)
if(setting == 1 || setting == 2)
ui->radioAsmjit->setChecked(true);
}