mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
fix JMP_BYTES macro on clang
This commit is contained in:
parent
11134fd074
commit
40cc77051c
1 changed files with 4 additions and 4 deletions
|
@ -59,10 +59,10 @@ bool loadGeode() {
|
|||
|
||||
#define JMP_ADDR(from, to) (std::bit_cast<uintptr_t>(to) - std::bit_cast<uintptr_t>(from) - 5)
|
||||
#define JMP_BYTES(from, to) \
|
||||
((JMP_ADDR(from, to) >> 0) & 0xFF), \
|
||||
((JMP_ADDR(from, to) >> 8) & 0xFF), \
|
||||
((JMP_ADDR(from, to) >> 16) & 0xFF), \
|
||||
((JMP_ADDR(from, to) >> 24) & 0xFF)
|
||||
static_cast<uint8_t>((JMP_ADDR(from, to) >> 0) & 0xFF), \
|
||||
static_cast<uint8_t>((JMP_ADDR(from, to) >> 8) & 0xFF), \
|
||||
static_cast<uint8_t>((JMP_ADDR(from, to) >> 16) & 0xFF), \
|
||||
static_cast<uint8_t>((JMP_ADDR(from, to) >> 24) & 0xFF)
|
||||
|
||||
uint8_t trampolineBytes[trampolineSize] = {
|
||||
// push ebp
|
||||
|
|
Loading…
Add table
Reference in a new issue