mirror of https://github.com/PCSX2/pcsx2.git
gsdx-ogl: Do some integer casts for destination texture commit to StretchRect.
Fixes warning.
This commit is contained in:
parent
bdcf83ca45
commit
e77aac0bf1
|
@ -1352,7 +1352,7 @@ void GSDeviceOGL::StretchRect(GSTexture* sTex, const GSVector4& sRect, GSTexture
|
||||||
// ************************************
|
// ************************************
|
||||||
// Draw
|
// Draw
|
||||||
// ************************************
|
// ************************************
|
||||||
dTex->CommitRegion(GSVector2i(dRect.z + 1, dRect.w + 1));
|
dTex->CommitRegion(GSVector2i((int)dRect.z + 1, (int)dRect.w + 1));
|
||||||
DrawPrimitive();
|
DrawPrimitive();
|
||||||
|
|
||||||
// ************************************
|
// ************************************
|
||||||
|
|
Loading…
Reference in New Issue