Added constant for CSR_FIELD

This commit is contained in:
Jean-Philip Desjardins 2014-04-26 01:10:20 -04:00
parent d58932c20c
commit 919e0c8357
2 changed files with 2 additions and 1 deletions

View File

@ -211,7 +211,7 @@ void CGSHandler::ResetVBlank()
m_nCSR &= ~CSR_VSYNC_INT;
//Alternate current field
m_nCSR ^= 0x2000;
m_nCSR ^= CSR_FIELD;
}
bool CGSHandler::IsInterruptPending()

View File

@ -101,6 +101,7 @@ public:
CSR_FINISH_EVENT = 0x0002,
CSR_VSYNC_INT = 0x0008,
CSR_RESET = 0x0200,
CSR_FIELD = 0x2000
};
struct PRESENTATION_PARAMS