[Project64] make struct TIMER_DETAILS size consistent between windows and android

This commit is contained in:
zilmar 2016-05-01 12:47:39 +10:00
parent fb1987deb5
commit 740469d26e
1 changed files with 5 additions and 1 deletions

View File

@ -36,7 +36,11 @@ public:
struct TIMER_DETAILS
{
bool Active;
union
{
int64_t reserved;
bool Active;
};
int64_t CyclesToTimer;
};