feat: Add to Favorites folder (Part 1)

This commit is contained in:
robshape 2023-04-20 21:08:53 +02:00
parent 4c5afd68e6
commit 36ad88176c
4 changed files with 127 additions and 5 deletions

View file

@ -56,6 +56,8 @@
#define PAKS_PATH SYSTEM_PATH "/paks"
#define RECENT_PATH USERDATA_PATH "/.minui/recent.txt"
#define FAUX_RECENT_PATH SDCARD_PATH "/Recently Played"
#define FAVORITE_PATH USERDATA_PATH "/.minui/favorite.txt"
#define FAUX_FAVORITE_PATH SDCARD_PATH "/Favorites"
#define COLLECTIONS_PATH SDCARD_PATH "/Collections"
#define LAST_PATH "/tmp/last.txt" // transient
@ -121,4 +123,4 @@
#define SCALE4(a,b,c,d) ((a)*SCREEN_SCALE),((b)*SCREEN_SCALE),((c)*SCREEN_SCALE),((d)*SCREEN_SCALE)
#endif
#endif