aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
authorMarvin Borner2020-09-14 18:38:44 +0200
committerMarvin Borner2020-09-14 18:38:44 +0200
commit096f9be4ac328ae39bd794c36a9a04ff68c2b844 (patch)
tree7228f9d1631fd126c1942bafb878cca381ff336b /libgui
parent18a0cc60d46d8ab22479e9683c27459703195480 (diff)
Some GUI fixes
Diffstat (limited to 'libgui')
-rw-r--r--libgui/gui.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libgui/gui.c b/libgui/gui.c
index 9744f75..1ff202d 100644
--- a/libgui/gui.c
+++ b/libgui/gui.c
@@ -111,11 +111,10 @@ void gui_win_on_win(struct window *dest, struct window *src, int x, int y)
return;
}
- if (x < 0)
- x = 0;
- if (y < 0)
- y = 0;
+ if (src->width > dest->width || src->height > dest->height)
+ return;
+ // TODO: Negative x and y
int bypp = dest->bpp >> 3;
u8 *srcfb = src->fb;
u8 *destfb = &dest->fb[x * bypp + y * dest->pitch];