mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-28 09:49:18 -05:00
Remove trailing spaces
This commit is contained in:
@ -2186,9 +2186,9 @@ void BeginScissorMode(int x, int y, int width, int height)
|
||||
if ((CORE.Window.flags & FLAG_WINDOW_HIGHDPI) > 0)
|
||||
{
|
||||
Vector2 scale = GetWindowScaleDPI();
|
||||
|
||||
|
||||
rlScissor(x*scale.x, CORE.Window.currentFbo.height - (y + height)*scale.y, width*scale.x, height*scale.y);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
rlScissor(x, CORE.Window.currentFbo.height - (y + height), width, height);
|
||||
@ -4920,7 +4920,7 @@ static void WindowSizeCallback(GLFWwindow *window, int width, int height)
|
||||
|
||||
CORE.Window.screen.width = width/windowScaleDPI.x;
|
||||
CORE.Window.screen.height = height/windowScaleDPI.y;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
CORE.Window.screen.width = width;
|
||||
|
||||
Reference in New Issue
Block a user