mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-14 08:12:19 +00:00
Fixed signedness issue in formatted entrypoint address
This commit is contained in:
parent
54b6825d63
commit
3db07f5b26
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue