1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +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;
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)
{}
};