Skip to content

Commit

Permalink
maybe? i dont know at this point
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx committed Mar 24, 2024
1 parent 1101a9c commit fad71e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit fad71e7

Please sign in to comment.