aboutsummaryrefslogtreecommitdiff
path: root/apps/chess
diff options
context:
space:
mode:
authorMarvin Borner2021-05-23 23:19:26 +0200
committerMarvin Borner2021-05-23 23:19:26 +0200
commitcf1a6ed2998eb22b112f233d65975c27fa5ced5b (patch)
treed78e63704219a49657c6f3029d071ce746c6f932 /apps/chess
parent577b4f989020be27885bcd846e3c49843aa69c08 (diff)
Added title to app bar
Diffstat (limited to 'apps/chess')
-rw-r--r--apps/chess/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/chess/main.c b/apps/chess/main.c
index 8e1d470..a546e63 100644
--- a/apps/chess/main.c
+++ b/apps/chess/main.c
@@ -239,7 +239,7 @@ static void draw_board(void)
int main(void)
{
- gui_new_custom_window(&win, vec2(0, 0), vec2(TILE * 8, TILE * 8));
+ win = gui_new_custom_window(APPNAME, vec2(0, 0), vec2(TILE * 8, TILE * 8));
fen_parse(START_FEN);
draw_board();