Skip to content

Commit

Permalink
Patcher X ???
Browse files Browse the repository at this point in the history
  • Loading branch information
Veha0001 committed Dec 10, 2024
1 parent fa4c0ee commit babef40
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion patcher.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#include <cstdint>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <nlohmann/json.hpp>
#include <optional>
Expand Down Expand Up @@ -170,6 +169,11 @@ void patch_code(const std::string &input_filename,

std::cout << CYAN << "Patching completed. Output written to '"
<< output_filename << "'." << RESET << std::endl;

#ifdef _WIN32
std::cout << "Press Enter to exit...";
std::cin.get();
#endif
}

int main(int argc, char *argv[]) {
Expand Down

0 comments on commit babef40

Please sign in to comment.