From b8d94209a6c21243e31ffe9608432e1d54c4a4c5 Mon Sep 17 00:00:00 2001 From: Ivan Mahonin Date: Jul 21 2021 10:56:32 +0000 Subject: 2048: title --- diff --git a/2048.c b/2048.c index cb4b2bf..6e3f67e 100644 --- a/2048.c +++ b/2048.c @@ -201,10 +201,11 @@ void draw() { int main() { - windowSetInit(&init); - windowSetDraw(&draw); + windowSetTitle("2048"); windowSetSize(MAPSIZE*CELLSIZE, MAPSIZE*CELLSIZE); windowSetVariableFrameRate(); + windowSetInit(&init); + windowSetDraw(&draw); windowRun(); return 0; }