Skip to content

Commit

Permalink
why
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx committed Mar 24, 2024
1 parent fad71e7 commit 23a9d88
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 = std::format("\"{}\"", technoblade);
std::string tThePig = fmt::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 23a9d88

Please sign in to comment.