mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: fix gcc warning: may be used uninitialized
This commit is contained in:
parent
3415da216f
commit
52e12baca2
|
@ -257,9 +257,9 @@ u32 UpdateVSyncRate()
|
||||||
// the GS's output circuit. It is the same regardless if the GS is outputting interlace
|
// the GS's output circuit. It is the same regardless if the GS is outputting interlace
|
||||||
// or progressive scan content.
|
// or progressive scan content.
|
||||||
|
|
||||||
Fixed100 framerate;
|
Fixed100 framerate = 0;
|
||||||
u32 scanlines;
|
u32 scanlines = 0;
|
||||||
bool isCustom;
|
bool isCustom = false;
|
||||||
|
|
||||||
if( gsRegionMode == Region_PAL )
|
if( gsRegionMode == Region_PAL )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue