- merge error fixed.

This commit is contained in:
Christoph Oelckers 2018-03-26 22:11:13 +02:00
parent a350c43c87
commit e0039179cb
1 changed files with 1 additions and 1 deletions

View File

@ -1710,7 +1710,7 @@ bool D3DTex::CheckWrapping(bool wrapping)
bool D3DTex::Create(D3DFB *fb, bool wrapping)
{
if (SUCCEEDED(fb->D3DDevice->CreateTexture(GameTex->GetWidth(), GameTex->GetHeight(), 1, 0, Format, D3DPOOL_MANAGED, &Tex, NULL)))
if (SUCCEEDED(fb->D3DDevice->CreateTexture(mGameTex->GetWidth(), mGameTex->GetHeight(), 1, 0, Format, D3DPOOL_MANAGED, &Tex, NULL)))
{
return Update();
}