From c23b2bdc55ddd1971eff883f458fa834e466ba82 Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Mon, 3 May 2021 22:42:10 +0200 Subject: [PATCH] reduced buffer size --- discord_integration/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord_integration/src/main.cpp b/discord_integration/src/main.cpp index 32ed18e..c33ca5c 100644 --- a/discord_integration/src/main.cpp +++ b/discord_integration/src/main.cpp @@ -73,8 +73,8 @@ private: } void updatePresence() { - char freq[1024]; - char mode[1024]; + char freq[32]; + char mode[32]; double selectedFreq = gui::freqSelect.frequency; std::string selectedName = gui::waterfall.selectedVFO; strcpy(mode, "Raw");