| 50 | } |
| 51 | |
| 52 | static bool IsProgressiveVideoMode() |
| 53 | { |
| 54 | // The FIELD register only flips if the CMOD field in SMODE1 is set to anything but 0 and Front Porch bottom bit in SYNCV is set. |
| 55 | // Also see "isReallyInterlaced()" in GSState.cpp |
| 56 | return !(*(u32*)PS2GS_BASE(GS_SYNCV) & 0x1) || !(*(u32*)PS2GS_BASE(GS_SMODE1) & 0x6000); |
| 57 | } |
| 58 | |
| 59 | void rcntReset(int index) |
| 60 | { |
no outgoing calls
no test coverage detected