[Project64] get SystemTiming.cpp to use standard types

This commit is contained in:
zilmar 2016-01-18 22:00:16 +11:00
parent 0175adc49f
commit 9b2a398181
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
#include <Project64-core/N64System/N64Class.h>
#include <Project64-core/3rdParty/zip.h>
CSystemTimer::CSystemTimer(int & NextTimer) :
CSystemTimer::CSystemTimer( int32_t & NextTimer ) :
m_NextTimer(NextTimer),
m_inFixTimer(false)
{

View File

@ -39,7 +39,7 @@ public:
};
public:
CSystemTimer(int & NextTimer);
CSystemTimer(int32_t & NextTimer);
void SetTimer(TimerType Type, uint32_t Cycles, bool bRelative);
uint32_t GetTimer(TimerType Type);
void StopTimer(TimerType Type);
@ -65,8 +65,8 @@ private:
CSystemTimer& operator=(const CSystemTimer&); // Disable assignment
TIMER_DETAILS m_TimerDetatils[MaxTimer];
int m_LastUpdate; //Timer at last update
int & m_NextTimer;
int32_t m_LastUpdate; //Timer at last update
int32_t & m_NextTimer;
TimerType m_Current;
bool m_inFixTimer;