From 740469d26e2dcf6d8c2126c02620cf6b92eb6983 Mon Sep 17 00:00:00 2001 From: zilmar Date: Sun, 1 May 2016 12:47:39 +1000 Subject: [PATCH] [Project64] make struct TIMER_DETAILS size consistent between windows and android --- Source/Project64-core/N64System/Mips/SystemTiming.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Project64-core/N64System/Mips/SystemTiming.h b/Source/Project64-core/N64System/Mips/SystemTiming.h index 8d01ebb77..4f916a6a1 100644 --- a/Source/Project64-core/N64System/Mips/SystemTiming.h +++ b/Source/Project64-core/N64System/Mips/SystemTiming.h @@ -36,7 +36,11 @@ public: struct TIMER_DETAILS { - bool Active; + union + { + int64_t reserved; + bool Active; + }; int64_t CyclesToTimer; };