From 5bf5149428c25fc6a1bd101b01e134f8095ceb99 Mon Sep 17 00:00:00 2001 From: Edu Meneses Date: Thu, 12 Dec 2024 11:25:51 -0500 Subject: [PATCH] fix trying to load empty values from settings --- basic/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/basic/src/main.cpp b/basic/src/main.cpp index 604f450..0ed1871 100644 --- a/basic/src/main.cpp +++ b/basic/src/main.cpp @@ -36,9 +36,9 @@ void setup() { */ std::cout << "\n" << "Settings stored in data/settings.json:\n" - << "Hitchhiker: " << puara.getVarText ("Hitchhiker") << "\n" - << "answer_to_everything: " << puara.getVarNumber("answer_to_everything") << "\n" - << "variable3: " << puara.getVarNumber("variable3") << "\n" + // << "Hitchhiker: " << puara.getVarText ("Hitchhiker") << "\n" + // << "answer_to_everything: " << puara.getVarNumber("answer_to_everything") << "\n" + // << "variable3: " << puara.getVarNumber("variable3") << "\n" << std::endl; }