about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dynarec/dynacache_reloc.c2
-rw-r--r--src/dynarec/dynacache_reloc.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dynarec/dynacache_reloc.c b/src/dynarec/dynacache_reloc.c
index f9f70dd8..ebf0f927 100644
--- a/src/dynarec/dynacache_reloc.c
+++ b/src/dynarec/dynacache_reloc.c
@@ -242,7 +242,7 @@ uintptr_t RelocGetNext() {
 }
 
 #ifdef DUMMY_GETCONST
-uintptr_t getConst(arm64_consts_t which)
+uintptr_t getConst(native_consts_t which)
 {
     return 0;
 }
diff --git a/src/dynarec/dynacache_reloc.h b/src/dynarec/dynacache_reloc.h
index 3e1a601c..40f03019 100644
--- a/src/dynarec/dynacache_reloc.h
+++ b/src/dynarec/dynacache_reloc.h
@@ -10,7 +10,7 @@ typedef enum native_consts_s {
     const_last
 } native_consts_t;
 #define DUMMY_GETCONST
-uintptr_t getConst(arm64_consts_t which);
+uintptr_t getConst(native_consts_t which);
 #endif
 
 void AddRelocTable64Const(dynarec_native_t* dyn, int ninst, native_consts_t C, int pass);