From c8e9e5a2a711debdccbfb14d4ad6a24ea6340a36 Mon Sep 17 00:00:00 2001 From: Ivan Baravy Date: Sat, 11 Jan 2025 20:32:29 +0000 Subject: [PATCH] Fix autobuild for dino --- data/Tupfile.lua | 2 +- programs/games/dino/Tupfile.lua | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/data/Tupfile.lua b/data/Tupfile.lua index ca7792abef..f7ea913841 100644 --- a/data/Tupfile.lua +++ b/data/Tupfile.lua @@ -39,7 +39,6 @@ img_files = { {"3D/HOUSE.3DS", "common/3d/house.3ds"}, {"File Managers/ICONS.INI", "common/File Managers/icons.ini"}, {"GAMES/FLPYBIRD", SRC_PROGS .. "/games/flappybird/Release/flappybird"}, - {"GAMES/DINO", SRC_PROGS .. "/games/dino/dino"}, {"FONTS/TAHOMA.KF", "common/fonts/tahoma.kf"}, -- {"LIB/ICONV.OBJ", "common/lib/iconv.obj"}, {"LIB/KMENU.OBJ", "common/lib/kmenu.obj"}, @@ -476,6 +475,7 @@ tup.append_table(img_files, { {"File Managers/KFAR", VAR_PROGS .. "/fs/kfar/trunk/kfar"}, {"File Managers/OPENDIAL", VAR_PROGS .. "/fs/opendial/opendial"}, {"GAMES/15", VAR_PROGS .. "/games/15/trunk/15"}, + {"GAMES/DINO", VAR_PROGS .. "/games/dino/dino"}, {"GAMES/FREECELL", VAR_PROGS .. "/games/freecell/freecell"}, {"GAMES/GOMOKU", VAR_PROGS .. "/games/gomoku/trunk/gomoku"}, {"GAMES/LIGHTS", VAR_PROGS .. "/games/sq_game/trunk/SQ_GAME"}, diff --git a/programs/games/dino/Tupfile.lua b/programs/games/dino/Tupfile.lua index 2e78225988..9941387185 100644 --- a/programs/games/dino/Tupfile.lua +++ b/programs/games/dino/Tupfile.lua @@ -6,17 +6,17 @@ end tup.include(HELPERDIR .. "/use_tcc.lua") SRCS = { - "cloud.c" - "game_over_panel.c" - "horizon.c" - "main.c" - "obstacle.c" - "trex.c" - "distance_meter.c" - "graphics.c" - "horizon_line.c" - "misc.c" - "runner.c" + "cloud.c", + "game_over_panel.c", + "horizon.c", + "main.c", + "obstacle.c", + "trex.c", + "distance_meter.c", + "graphics.c", + "horizon_line.c", + "misc.c", + "runner.c", "ulist.c" }