Skip to content

Commit

Permalink
Game Patch: fix jump size formatting error (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
illusion0001 authored Jun 23, 2023
1 parent 71b4655 commit 9c71d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin_src/game_patch/source/patch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ void patch_data1(const char* patch_type_str, u64 addr, const char *value, uint32
final_printf("Patch data:\n");
final_printf(" Address: 0x%lx\n", addr);
final_printf(" Value: %s\n", value);
final_printf(" Jump Size: %s\n", source_size);
final_printf(" Jump Size: %u\n", source_size);
final_printf(" Jump Target: 0x%lx\n", jump_target);
break;
}
Expand Down

0 comments on commit 9c71d2b

Please sign in to comment.