Skip to content

Commit

Permalink
Fix build fail
Browse files Browse the repository at this point in the history
Signed-off-by: Bensuperpc <[email protected]>
  • Loading branch information
bensuperpc committed Mar 9, 2022
1 parent 01daf9e commit 8e34c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ auto main(int argc, char* argv[]) -> int

std::vector<std::string> args(argv + 1, argv + argc);

for (std::string i = args.begin(); i != args.end(); ++i) {
for (auto i = args.begin(); i != args.end(); ++i) {
if (*i == "-h" || *i == "--help") {
std::cout << "Syntax: GTA_SA_cheat_finder --min <from (uint64_t)> --max "
"<to (uint64_t)>"
Expand Down

0 comments on commit 8e34c17

Please sign in to comment.