mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-04-30 09:01:41 -04:00
(#102) resolved trigger condition cannot list technos in expected way (should be ID instead of numbers) .
This commit is contained in:
parent
66ed0ae4ae
commit
1ccf2c8526
1 changed files with 4 additions and 4 deletions
|
@ -799,10 +799,10 @@ void ListAircraft(CComboBox& cb)
|
|||
void ListTechtypes(CComboBox& cb)
|
||||
{
|
||||
while (cb.DeleteString(0) != CB_ERR);
|
||||
listSpecifcTechnoTypes(cb, "AircraftTypes", false);
|
||||
listSpecifcTechnoTypes(cb, "InfantryTypes", false);
|
||||
listSpecifcTechnoTypes(cb, "VehicleTypes", false);
|
||||
listSpecifcTechnoTypes(cb, "BuildingTypes", false);
|
||||
listSpecifcTechnoTypes(cb, "AircraftTypes", false, true);
|
||||
listSpecifcTechnoTypes(cb, "InfantryTypes", false, true);
|
||||
listSpecifcTechnoTypes(cb, "VehicleTypes", false, true);
|
||||
listSpecifcTechnoTypes(cb, "BuildingTypes", false, true);
|
||||
}
|
||||
|
||||
void listLocalVariables(CComboBox& cb, const CIniFile& ini)
|
||||
|
|
Loading…
Add table
Reference in a new issue