mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-12-04 09:04:18 +01:00
ee14187e2d
- fixed crash when pressing 1/x or 2/y buttons (change coverflow layout) when no covers are loaded. - fixed hiding the wait loading animation when using source menu on start. - fixed exiting source menu on start via B button so covers show properly. - fixed using homebrew icon.png's with transparency as covers for smallbox by restoring some old code I didn't understand. But ... sometimes the icon.png textures (.wfc) are saved as empty black boxes. - if you get an empty black box for your homebrew cover image you can select the cover and click the 'X' delete icon. it will not delete your homebrew app but will instead delete the cover texture file (.wfc). Then you can do reload cache and hopefully your cover will be fixed. - tried fixing cacheing covers after downloading them. works sometimes. It's a low free mem2 error if using rhapsodii shima theme and having a lot of games. if covers do not appear after downloading then i suggest rebooting wiiflow and doing reload cache first thing or switch to wiiflow's default theme and then download the covers and then switch back to rhapsodii shima theme.
57 lines
2.0 KiB
C
57 lines
2.0 KiB
C
|
|
#define APP_NAME "WiiFlow WFL"
|
|
#define APP_VERSION "5.4.4"
|
|
|
|
#define APP_DATA_DIR "wiiflow"
|
|
#define APPS_DIR "apps/wiiflow"
|
|
|
|
#define GAMES_DIR "%s:/wbfs"
|
|
#define HOMEBREW_DIR "apps"
|
|
#define DF_GC_GAMES_DIR "%s:/games"
|
|
#define CFG_FILENAME "wiiflow_lite.ini"
|
|
#define CAT_FILENAME "categories_lite.ini"
|
|
#define SOURCE_FILENAME "source_menu.ini"
|
|
#define CTITLES_FILENAME "custom_titles.ini"
|
|
#define TITLES_DUMP_FILENAME "titlesdump.ini"
|
|
#define GAME_SETTINGS1_FILENAME "gameconfig1.ini"
|
|
#define GAME_SETTINGS2_FILENAME "gameconfig2.ini"
|
|
#define PLUGIN_CRCS_FILENAME "plugin_crc32.ini"
|
|
|
|
#define WII_DOMAIN "WII"
|
|
#define GC_DOMAIN "GAMECUBE"
|
|
#define CHANNEL_DOMAIN "CHANNELS"
|
|
#define PLUGIN_DOMAIN "PLUGINS"
|
|
#define HOMEBREW_DOMAIN "HOMEBREW"
|
|
#define SOURCEFLOW_DOMAIN "SOURCEFLOW"
|
|
|
|
#define DEVELOPERS "Fledge68"
|
|
#define PAST_DEVELOPERS "FIX94, OverjoY, Hibernatus, Narolez, Hulk, Miigotu, r-win"
|
|
#define LOADER_AUTHOR "Kwiirk, Waninkoko, Hermes"
|
|
#define GUI_AUTHOR "Hibernatus"
|
|
|
|
#define THANKS \
|
|
"Lustar, CedWii, Benjay, Domi78, Oops, \
|
|
Celtiore, Jiiwah, FluffyKiwi, Roku93, Yardape8000, \
|
|
Spayrosam, Bluescreen81, Chappy23, mamule, seam, \
|
|
BlindDude, Bubba, DJTaz, OggZee, entropy, Ayatus, \
|
|
Usptactical, WiiPower, Hermes, Spidy1000, megazig, \
|
|
Dimok, Kovani, Drexyl, DvZ, Etheboss, stfour, \
|
|
GaiaKnight, nibb, NJ7, Plasma, Pakatus, giantpune, \
|
|
wolf, ravmn, spidercaleb, Ziggy34, xFede, Abz, \
|
|
and to anyone who has donated or \
|
|
contributed to Wiiflow that we missed!"
|
|
|
|
#define THANKS_SITES \
|
|
"devkitpro.org, wiibrew.org, gametdb.com, \
|
|
ohloh.net, wiifanart.com, wiiflowiki.com, \
|
|
tgames.fr.nf"
|
|
|
|
#define THANKS_CODE \
|
|
"CFG Loader, Wii Banner Player Project, USB Loader GX, \
|
|
uLoader, NeoGamma, Mighty Channels, WiiXplorer, Triiforce, \
|
|
postLoader"
|
|
|
|
|
|
#define WIINNERTAG_URL "http://tag.rc24.xyz/wii?game={ID6}&key={KEY}"// RiiTag as of 3/11/2020
|
|
#define DUTAG_URL "http://tag.darkumbra.net/{KEY}.update={ID6}"
|