mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-05-04 10:51:39 -04:00
Parent house displayed in dialog will no longer show 'GDI' or 'Nod' .
This commit is contained in:
parent
5079e68041
commit
0061df657c
1 changed files with 3 additions and 1 deletions
|
@ -71,7 +71,9 @@ BOOL CNewRA2HouseDlg::OnInitDialog()
|
|||
CComboBox* country = (CComboBox*)GetDlgItem(IDC_COUNTRY);
|
||||
|
||||
for (auto const& [seq, id] : rules[HOUSES]) {
|
||||
country->AddString(TranslateHouse(id, TRUE));
|
||||
if (id != "GDI" && id != "Nod") {
|
||||
country->AddString(TranslateHouse(id, TRUE));
|
||||
}
|
||||
}
|
||||
|
||||
country->SetCurSel(0);
|
||||
|
|
Loading…
Add table
Reference in a new issue