Fix warning.

This commit is contained in:
Jean-Philip Desjardins 2019-04-04 18:25:28 -04:00
parent 7b9fc20694
commit 6501e0d8dc
2 changed files with 11 additions and 17 deletions

View File

@ -23,17 +23,11 @@
#define STATE_REGS_QTEMP ("QTEMP")
CGIF::CGIF(CGSHandler*& gs, uint8* ram, uint8* spr)
: m_gs(gs)
, m_ram(ram)
, m_spr(spr)
, m_loops(0)
, m_cmd(0)
, m_regs(0)
, m_regsTemp(0)
, m_regList(0)
, m_eop(false)
, m_qtemp(QTEMP_INIT)
, m_gifProfilerZone(CProfiler::GetInstance().RegisterZone("GIF"))
: m_qtemp(QTEMP_INIT)
, m_ram(ram)
, m_spr(spr)
, m_gs(gs)
, m_gifProfilerZone(CProfiler::GetInstance().RegisterZone("GIF"))
{
}

View File

@ -77,12 +77,12 @@ private:
bool m_path3Masked = false;
uint32 m_activePath = 0;
uint16 m_loops;
uint8 m_cmd;
uint8 m_regs;
uint8 m_regsTemp;
uint64 m_regList;
bool m_eop;
uint16 m_loops = 0;
uint8 m_cmd = 0;
uint8 m_regs = 0;
uint8 m_regsTemp = 0;
uint64 m_regList = 0;
bool m_eop = false;
uint32 m_qtemp;
SIGNAL_STATE m_signalState = SIGNAL_STATE_NONE;
uint8* m_ram;