pcsx2: fix gcc warning: may be used uninitialized

This commit is contained in:
Gregory Hainaut 2015-08-11 09:40:20 +02:00
parent 3415da216f
commit 52e12baca2
1 changed files with 3 additions and 3 deletions

View File

@ -257,9 +257,9 @@ u32 UpdateVSyncRate()
// the GS's output circuit. It is the same regardless if the GS is outputting interlace
// or progressive scan content.
Fixed100 framerate;
u32 scanlines;
bool isCustom;
Fixed100 framerate = 0;
u32 scanlines = 0;
bool isCustom = false;
if( gsRegionMode == Region_PAL )
{