From 0fb5829c44e4220f9c1f3bdb030777dab76779e2 Mon Sep 17 00:00:00 2001 From: Grinch_ Date: Tue, 2 Feb 2021 20:51:09 +0600 Subject: [PATCH] Fixed bug with RadioButtonAddress --- src/Ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ui.cpp b/src/Ui.cpp index db2cfc8..c81d1ed 100644 --- a/src/Ui.cpp +++ b/src/Ui.cpp @@ -576,7 +576,7 @@ void Ui::RadioButtonAddress(const char* label, std::vector &named_m state = false; } - if (ImGui::RadioButton("None", state)) + if (ImGui::RadioButton((std::string("None##") + label).c_str(), state)) { for (size_t i = 0; i < named_mem.size(); i++) patch::Set(named_mem[i].addr, false);