add tetris game & games menu & 2 icons

This commit is contained in:
Eng1n33r
2022-06-01 20:54:51 +03:00
parent 50fccb4455
commit 532253867e
33 changed files with 561 additions and 10 deletions

View File

@@ -48,6 +48,7 @@ APP_UPDATER = 1
APP_MUSIC_PLAYER = 1
APP_SNAKE_GAME = 1
APP_WAV_PLAYER = 1
APP_TETRIS_GAME = 1
# Debug
APP_ACCESSOR = 1
@@ -247,6 +248,11 @@ CFLAGS += -DAPP_WAV_PLAYER
SRV_GUI = 1
endif
APP_TETRIS_GAME ?= 0
ifeq ($(APP_TETRIS_GAME), 1)
CFLAGS += -DAPP_TETRIS_GAME
SRV_GUI = 1
endif
APP_IBUTTON ?= 0
ifeq ($(APP_IBUTTON), 1)