Fixed recently introduced compilation warnings

src\v_video.cpp(1771): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
src\v_video.cpp(1773): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
This commit is contained in:
alexey.lysiuk 2017-05-16 16:39:07 +03:00
parent 625fc73f28
commit a92f889e44

View file

@ -1768,9 +1768,9 @@ void ScaleWithAspect (int &w, int &h, int Width, int Height)
} }
double y = w/yratio; double y = w/yratio;
if (y > h) if (y > h)
w = h*yratio; w = static_cast<int>(h * yratio);
else else
h = y; h = static_cast<int>(y);
} }
void IVideo::DumpAdapters () void IVideo::DumpAdapters ()