Fix microtexture texture coordinates (thanks HarryTuttle)

This commit is contained in:
Ian Curtis 2017-03-11 01:18:43 +00:00
parent 503c88df11
commit 6636776f03

View file

@ -187,7 +187,7 @@ void TextureSheet::GetMicrotexPos(int basePage, int id, int& x, int& y)
basePage = (basePage + 1) & 1; // wrap around base page
x = xCoords[id];
y = xCoords[id] + (basePage * 1024);
y = yCoords[id] + (basePage * 1024);
}
} // New3D