diff options
Diffstat (limited to 'src/ARMJIT.cpp')
-rw-r--r-- | src/ARMJIT.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ARMJIT.cpp b/src/ARMJIT.cpp index bece539..7e12385 100644 --- a/src/ARMJIT.cpp +++ b/src/ARMJIT.cpp @@ -26,9 +26,9 @@ #include "NDSCart.h" #include "ARMJIT_x64/ARMJIT_Offsets.h" -static_assert(offsetof(ARM, CPSR) == ARM_CPSR_offset); -static_assert(offsetof(ARM, Cycles) == ARM_Cycles_offset); -static_assert(offsetof(ARM, StopExecution) == ARM_StopExecution_offset); +static_assert(offsetof(ARM, CPSR) == ARM_CPSR_offset, ""); +static_assert(offsetof(ARM, Cycles) == ARM_Cycles_offset, ""); +static_assert(offsetof(ARM, StopExecution) == ARM_StopExecution_offset, ""); namespace ARMJIT { |