From fad71e76c2bdf77c684ac4b71b09120189d52c25 Mon Sep 17 00:00:00 2001 From: Erymanthus | RayDeeUx <51521765+RayDeeUx@users.noreply.github.com> Date: Sun, 24 Mar 2024 19:19:09 -0400 Subject: [PATCH] maybe? i dont know at this point --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 0057ffd..c2fba13 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,7 +29,7 @@ int fps = -1; std::ifstream file(pathRogers); std::string technoblade; while (std::getline(file, technoblade)) { - std::string tThePig = "\"" + technoblade + "\""; + std::string tThePig = std::format("\"{}\"", technoblade); quotes.push_back(tThePig); } // technically i can write two one-time use boolean variables to allow people to toggle these things on and off as they please without the quotes adding themselves multiple times into the vector, but i'd rather add the "restart required" barrier just to be extra safe }