gsdx-ogl: Do some integer casts for destination texture commit to StretchRect.

Fixes warning.
This commit is contained in:
lightningterror 2019-02-28 00:44:03 +01:00
parent bdcf83ca45
commit e77aac0bf1
1 changed files with 1 additions and 1 deletions

View File

@ -1352,7 +1352,7 @@ void GSDeviceOGL::StretchRect(GSTexture* sTex, const GSVector4& sRect, GSTexture
// ************************************
// Draw
// ************************************
dTex->CommitRegion(GSVector2i(dRect.z + 1, dRect.w + 1));
dTex->CommitRegion(GSVector2i((int)dRect.z + 1, (int)dRect.w + 1));
DrawPrimitive();
// ************************************