[Project64] make struct TIMER_DETAILS size consistent between windows and android
This commit is contained in:
parent
fb1987deb5
commit
740469d26e
|
@ -36,7 +36,11 @@ public:
|
|||
|
||||
struct TIMER_DETAILS
|
||||
{
|
||||
bool Active;
|
||||
union
|
||||
{
|
||||
int64_t reserved;
|
||||
bool Active;
|
||||
};
|
||||
int64_t CyclesToTimer;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue