Skip to content

Commit

Permalink
Fixed signedness issue in formatted entrypoint address
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Wiseguy committed Apr 28, 2023
1 parent 54b6825 commit 3db07f5
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 @@ -1204,7 +1204,7 @@ int main(int argc, char** argv) {
"\n"
"const char* get_rom_name() {{ return \"{}\"; }}\n"
"\n",
config.entrypoint,
static_cast<uint32_t>(config.entrypoint),
config.elf_path.filename().replace_extension(".z64").string()
);

Expand Down

0 comments on commit 3db07f5

Please sign in to comment.