From 7190acfe9e0a988e5f11af4ec0c7b22f442603f5 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Fri, 21 Aug 2020 17:12:48 +0200 Subject: [PATCH] Fixed band plan name not appearing correctly --- src/main_window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main_window.cpp b/src/main_window.cpp index 01075a26..90c42032 100644 --- a/src/main_window.cpp +++ b/src/main_window.cpp @@ -732,8 +732,8 @@ void drawWindow() { config::configModified = true; } bandplan::BandPlan_t plan = bandplan::bandplans[bandplan::bandplanNames[bandplanId.val]]; - ImGui::Text("Country: %s (%s)", plan.countryName, plan.countryCode); - ImGui::Text("Author: %s", plan.authorName); + ImGui::Text("Country: %s (%s)", plan.countryName.c_str(), plan.countryCode.c_str()); + ImGui::Text("Author: %s", plan.authorName.c_str()); ImGui::Spacing(); }