diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-04 02:31:43 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-04 02:31:43 -0400 |
commit | 6ab929aa7bc5a3cdf0daba4ba1f0c9f2bbb68c9a (patch) | |
tree | 2137d4632aba2addaa2ebf1b3a43fe23f64ca34f /usr.bin/kfgwm/window.c | |
parent | 27a3e69356db7d50603e675d8ecc81df86dab594 (diff) |
usr.bin: kfgwm: Use kfgpos_t for x,y
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/kfgwm/window.c')
-rw-r--r-- | usr.bin/kfgwm/window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/kfgwm/window.c b/usr.bin/kfgwm/window.c index 7e36f05..259e841 100644 --- a/usr.bin/kfgwm/window.c +++ b/usr.bin/kfgwm/window.c @@ -42,11 +42,11 @@ static void draw_win(struct kfg_window *parent, struct kfg_window *wp) { kfgpixel_t *framep; - kfgpixel_t x_i, y_i; /* Start */ - kfgpixel_t x_end, y_end; /* End */ + kfgpos_t x_i, y_i; /* Start */ + kfgpos_t x_end, y_end; /* End */ kfgpixel_t brush = wp->bg; - kfgpixel_t rx, ry; /* Starts at 0 */ - kfgpixel_t rx_end, ry_end; /* Starts at 0 */ + kfgpos_t rx, ry; /* Starts at 0 */ + kfgpos_t rx_end, ry_end; /* Starts at 0 */ size_t i; framep = parent->framebuf; |