Revert "GPU: Clamp coordinates to 11 bits after applying drawing offset"

This reverts commit 5302f83818.

This is not the correct fix, and breaks other games.
This commit is contained in:
Connor McLaughlin
2020-04-04 19:31:08 +10:00
parent 7ace31d05f
commit 3cfead36c4
3 changed files with 14 additions and 19 deletions

View File

@ -61,8 +61,8 @@ protected:
ALWAYS_INLINE void Set(s32 x_, s32 y_, u32 color_, u32 texpage_, u16 u_, u16 v_)
{
x = VertexPositionToVRAMCoordinate(x_);
y = VertexPositionToVRAMCoordinate(y_);
x = x_;
y = y_;
color = color_;
texpage = texpage_;
u = u_;