aboutsummaryrefslogtreecommitdiff
path: root/apps/chess
diff options
context:
space:
mode:
authorMarvin Borner2021-05-21 22:41:11 +0200
committerMarvin Borner2021-05-21 22:41:11 +0200
commit93174e167a6aa313fca43f4cb0e9b975e1618468 (patch)
tree6fbed7871cb24f38cc714e6838ac6a6cc0f4fc36 /apps/chess
parent11cdf24db63af9a22786e81e69247f15cc196b0c (diff)
Better window destroying
Diffstat (limited to 'apps/chess')
-rw-r--r--apps/chess/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/chess/main.c b/apps/chess/main.c
index b0da8d1..8e1d470 100644
--- a/apps/chess/main.c
+++ b/apps/chess/main.c
@@ -214,8 +214,8 @@ static void draw_board(void)
{
for (u8 x = 0; x < 8; x++) {
for (u8 y = 0; y < 8; y++) {
- u32 widget;
- gui_new_widget(&widget, win, vec2(TILE * x, TILE * y), vec2(TILE, TILE));
+ u32 widget = gui_new_widget(win, GUI_MAIN, vec2(TILE * x, TILE * y),
+ vec2(TILE, TILE));
assert((signed)widget > 0);
u8 colored = (x + y + 1) % 2 == 0;