mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-06-07 08:14:48 +00:00
Fix GrFixZoomScale gr.sx 8 pixel offset lock.
This commit is contained in:
parent
618c989821
commit
946c51fa4d
@ -124,7 +124,7 @@ U0 GrFixZoomScale()
|
||||
}
|
||||
else
|
||||
{
|
||||
gr.sx = ClampI64(gr.sx, 0, GR_WIDTH - GR_WIDTH / gr.screen_zoom) & ~7;
|
||||
gr.sx = ClampI64(gr.sx, 0, GR_WIDTH - GR_WIDTH / gr.screen_zoom);
|
||||
gr.sy = ClampI64(gr.sy, 0, GR_HEIGHT - GR_HEIGHT / gr.screen_zoom);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user