This reverts commit d3c36166df.
d3c36166df
@ -89,8 +89,8 @@ void LogicalToOutput(T *x, T *y)
float scaleX;
SDL_RenderGetScale(renderer, &scaleX, NULL);
*x = static_cast<T>(*x * scaleX);
*y = static_cast<T>(*x * scaleX);
*x *= scaleX;
*y *= scaleX;
#else
if (!OutputRequiresScaling())
return;