diff options
Diffstat (limited to 'libpcsxcore/psxcounters.c')
| -rw-r--r-- | libpcsxcore/psxcounters.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libpcsxcore/psxcounters.c b/libpcsxcore/psxcounters.c index 70d16f85..a1a36748 100644 --- a/libpcsxcore/psxcounters.c +++ b/libpcsxcore/psxcounters.c @@ -65,7 +65,7 @@ static const u32 CountToOverflow = 0; static const u32 CountToTarget = 1; static const u32 FrameRate[] = { 60, 50 }; -//static const u32 VBlankStart[] = { 240, 256 };
+//static const u32 VBlankStart[] = { 240, 256 }; static const u32 VBlankStart[] = { 243, 256 }; static const u32 HSyncTotal[] = { 263, 313 }; static const u32 SpuUpdInterval[] = { 23, 22 }; @@ -95,13 +95,11 @@ void verboseLog( s32 level, const char *str, ... ) if( level <= VerboseLevel ) { va_list va; - char buf[ 4096 ]; va_start( va, str ); - vsprintf( buf, str, va ); + vprintf( str, va ); va_end( va ); - printf( buf ); fflush( stdout ); } } |
