1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Add rwidth and rheight initialization in VIInfo ctor.

This commit is contained in:
Sergey Lipskiy 2016-11-21 16:44:10 +07:00
parent 41ff9a8d03
commit 2a9df504df

View File

@ -11,7 +11,7 @@ struct VIInfo
bool PAL; bool PAL;
VIInfo() : VIInfo() :
width(0), widthPrev(0), height(0), real_height(0), width(0), widthPrev(0), height(0), real_height(0), rwidth(0), rheight(0),
lastOrigin(-1), interlaced(false), PAL(false) lastOrigin(-1), interlaced(false), PAL(false)
{} {}
}; };