Skip to content

Commit

Permalink
indent
Browse files Browse the repository at this point in the history
  • Loading branch information
RayDeeUx committed Mar 12, 2024
1 parent e001805 commit b3bca37
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -178,15 +178,15 @@ class $modify(MyEndLevelLayer, EndLevelLayer) {
#endif
} else if (strcmp("\"As you can see, my FPS is around 18 or so, which means we can definitely take this further.\"", randomString) == 0) {
#ifndef GEODE_IS_MACOS
std::string temp = "\"As you can see, my FPS is around " + std::to_string(fps) + " or so, which means we can definitely take this further.\"";
randomString = temp.c_str();
std::string temp = "\"As you can see, my FPS is around " + std::to_string(fps) + " or so, which means we can definitely take this further.\"";
randomString = temp.c_str();
#endif
} else if (strcmp("\"If you wish to defeat me, train for another 100 years.\"", randomString) == 0) {
#ifndef GEODE_IS_MACOS
int forEndString = (jumps * 100);
if (jumps == 0) forEndString = 100;
std::string temp = "\"If you wish to defeat me, train for another " + std::to_string(forEndString) + " years.\"";
randomString = temp.c_str();
int forEndString = (jumps * 100);
if (jumps == 0) forEndString = 100;
std::string temp = "\"If you wish to defeat me, train for another " + std::to_string(forEndString) + " years.\"";
randomString = temp.c_str();
#endif
}

Expand Down

0 comments on commit b3bca37

Please sign in to comment.