Fix PR request2

This commit is contained in:
XGodina 2022-11-22 16:31:20 +01:00 committed by bernat
parent fa936653bb
commit 2b6f94c8af
2 changed files with 0 additions and 3 deletions

View File

@ -228,8 +228,6 @@ void export_world() {
.value("Truck", cr::CityObjectLabel::Truck)
.value("Motorcycle", cr::CityObjectLabel::Motorcycle)
.value("Bicycle", cr::CityObjectLabel::Bicycle)
.value("Any", cr::CityObjectLabel::Any)
;

View File

@ -49,7 +49,6 @@ crp::CityObjectLabel ATagger::GetLabelByFolderName(const FString &String) {
else if (String == "Truck") return crp::CityObjectLabel::Truck;
else if (String == "Motorcycle") return crp::CityObjectLabel::Motorcycle;
else if (String == "Bicycle") return crp::CityObjectLabel::Bicycle;
else return crp::CityObjectLabel::None;
}