mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-24 05:14:40 -04:00
fix macos entry addresses
This commit is contained in:
parent
5170433c72
commit
f08856f663
1 changed files with 5 additions and 1 deletions
|
@ -17,7 +17,11 @@
|
|||
using namespace geode::prelude;
|
||||
|
||||
// address of applicationDidFinishLaunching:
|
||||
constexpr static uintptr_t ENTRY_ADDRESS = 0xb030;
|
||||
#ifdef GEODE_IS_INTEL_MAC
|
||||
constexpr static uintptr_t ENTRY_ADDRESS = 0x78a0;
|
||||
#else
|
||||
constexpr static uintptr_t ENTRY_ADDRESS = 0xa2f8;
|
||||
#endif
|
||||
|
||||
std::length_error::~length_error() _NOEXCEPT {} // do not ask...
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue