aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/psxcounters.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpcsxcore/psxcounters.c')
-rw-r--r--libpcsxcore/psxcounters.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/psxcounters.c b/libpcsxcore/psxcounters.c
index 044d0d3..1c514e8 100644
--- a/libpcsxcore/psxcounters.c
+++ b/libpcsxcore/psxcounters.c
@@ -286,7 +286,7 @@ void psxRcntUpdate()
// VSync irq.
if( hSyncCount == VBlankStart[Config.PsxType] )
{
- GPU_vBlank( 1 );
+ GPU_vBlank( 1, &hSyncCount );
// For the best times. :D
//setIrq( 0x01 );
@@ -297,7 +297,7 @@ void psxRcntUpdate()
{
hSyncCount = 0;
- GPU_vBlank( 0 );
+ GPU_vBlank( 0, &hSyncCount );
setIrq( 0x01 );
EmuUpdate();