mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
make AddressGen spit out hexadecimal
This commit is contained in:
parent
19c9f9ebde
commit
1f0482be97
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ std::string generateAddressHeader(Root& root) {
|
|||
|
||||
} else if (codegen::getStatus(field) == BindStatus::NeedsBinding) {
|
||||
|
||||
address_str = fmt::format("base::get() + {}", codegen::platformNumber(fn->binds));
|
||||
address_str = fmt::format("base::get() + 0x{:x}", codegen::platformNumber(fn->binds));
|
||||
|
||||
} else {
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue