2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 06:27:43 +00:00

Windows compile fixes

This commit is contained in:
Jack Andersen
2017-09-30 19:32:37 -10:00
parent 8cdaf74711
commit a84f5441a7
5 changed files with 11 additions and 13 deletions

View File

@@ -48,7 +48,7 @@ void CWorldShadowShader::blendPreviousShadow()
void CWorldShadowShader::resolveTexture()
{
boo::SWindowRect rect = {0, 0, m_w, m_h};
boo::SWindowRect rect = {0, 0, int(m_w), int(m_h)};
CGraphics::g_BooMainCommandQueue->resolveBindTexture(m_tex, rect, false, 0, true, false);
}