diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/custommem.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/custommem.h b/src/include/custommem.h index b1645133..e03db81c 100644 --- a/src/include/custommem.h +++ b/src/include/custommem.h @@ -39,9 +39,9 @@ uintptr_t getJumpAddress64(uintptr_t addr); #define JMPTABL_SHIFT2 18 #define JMPTABL_SHIFT1 18 #define JMPTABL_SHIFT0 10 -#define JMPTABL_START3 (JMPTABL_SHIFT0+JMPTABL_SHIFT1+JMPTABL_SHIFT2) -#define JMPTABL_START2 (JMPTABL_SHIFT0+JMPTABL_SHIFT1) -#define JMPTABL_START1 (JMPTABL_SHIFT0) +#define JMPTABL_START3 (JMPTABL_START2+JMPTABL_SHIFT2) +#define JMPTABL_START2 (JMPTABL_START1+JMPTABL_SHIFT1) +#define JMPTABL_START1 (JMPTABL_START0+JMPTABL_SHIFT0) #define JMPTABL_START0 0 #define JMPTABLE_MASK3 ((1<<JMPTABL_SHIFT3)-1) #define JMPTABLE_MASK2 ((1<<JMPTABL_SHIFT2)-1) |