From 1f115ddd320dc5e2f9c69e32ee2e40b758285f6e Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 9 Mar 2023 11:34:15 +0100 Subject: Basic GUI part selection --- machxo2/arch.cc | 4 ++-- machxo2/main.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'machxo2') diff --git a/machxo2/arch.cc b/machxo2/arch.cc index 481d15ee..385b776f 100644 --- a/machxo2/arch.cc +++ b/machxo2/arch.cc @@ -58,8 +58,8 @@ static void get_chip_info(std::string device, const ChipInfoPOD **chip_info, con for (auto &pkg : chip.packages) { for (auto &speedgrade : chip.speed_grades) { for (auto &rating : chip.suffixes) { - std::string name = stringf("%s-%d%s%s", chip.name.get(), speedgrade.speed, pkg.short_name.get(), rating.suffix.get()); - if (device == name) { + std::string devname = stringf("%s-%d%s%s", chip.name.get(), speedgrade.speed, pkg.short_name.get(), rating.suffix.get()); + if (device == devname) { *chip_info = db_ptr->get(); *package_info = nullptr; *package_name = pkg.name.get(); diff --git a/machxo2/main.cc b/machxo2/main.cc index e5b8176a..283bc59c 100644 --- a/machxo2/main.cc +++ b/machxo2/main.cc @@ -72,7 +72,7 @@ std::unique_ptr MachXO2CommandHandler::createContext(dict(); auto ctx = std::unique_ptr(new Context(chipArgs)); -- cgit v1.2.3