Tidy up all applications data and resources paths

This commit is contained in:
Willy-JL
2023-07-01 02:31:37 +02:00
parent f918f746c4
commit 690d4eb661
81 changed files with 700 additions and 121 deletions

View File

@@ -4,14 +4,14 @@
#include "tamalib/tamalib.h"
#define TAG "TamaP1"
#define TAMA_ROM_PATH EXT_PATH("tama_p1/rom.bin")
#define TAMA_ROM_PATH APP_DATA_PATH("rom.bin")
#define TAMA_SCREEN_SCALE_FACTOR 2
#define TAMA_LCD_ICON_SIZE 14
#define TAMA_LCD_ICON_MARGIN 1
#define STATE_FILE_MAGIC "TLST"
#define STATE_FILE_VERSION 2
#define TAMA_SAVE_PATH EXT_PATH("tama_p1/save.bin")
#define TAMA_SAVE_PATH APP_DATA_PATH("save.bin")
typedef struct {
FuriThread* thread;