mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
45b39c2be0
-Readded the code to paths to be able to change the path where Wii and GC games are kept. But they really should just be kept in dev:/wbfs and dev:/games. -wiiflow_lite.ini changes under [GAMECUBE] are: removed video_setting= - was used to tell wiiflow when using DML or Nintendont to set cfg args for video mode. not needed anymore. dir_usb_games= - is now - gc_games_dir= with default of %s:/games similar to wii_games_dir dm_widescreen= - is now - widescreen= screenshot= is removed. was used for DML wiiu_widescreen= is added. but only used if on a Wii U -gameconfig2.ini changes as well. -NMM and DML is still used in theme ini files. may change in a commit soon but that means all themes have to be modified, a big pain in the butt. -language and help files will need to be updated to remove all DML and NMM crap. -and default names of images for some icons and btns need to be changed but for now left them as they are. -other minor changes. Most of it untested so I hope it all works, if not then repair commits will follow.
60 lines
2.1 KiB
C
60 lines
2.1 KiB
C
#define APP_NAME "WiiFlow Lite"
|
|
#define APP_VERSION "Beta 4.2.2"
|
|
|
|
#define APPDATA_DIR "wiiflow"
|
|
#define APPDATA_DIR2 "apps/wiiflow"
|
|
|
|
#define STDEMU_DIR "/wiiflow/nandemu"
|
|
#define GAMES_DIR "%s:/wbfs"
|
|
#define HOMEBREW_DIR "%s:/apps"
|
|
#define DF_GC_GAMES_DIR "%s:/games"
|
|
#define CFG_FILENAME "wiiflow_lite.ini"
|
|
#define LANG_FILENAME "languages.ini"
|
|
#define CAT_FILENAME "categories_lite.ini"
|
|
#define SOURCE_FILENAME "source_menu.ini"
|
|
#define TITLES_FILENAME "titles.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 MUSIC_DOMAIN "MUSIC"
|
|
#define FTP_DOMAIN "FTP"
|
|
|
|
#define DEVELOPERS "FIX94, Fledge68, OverjoY"
|
|
#define PAST_DEVELOPERS "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://www.wiinnertag.com/wiinnertag_scripts/update_sign.php?key={KEY}&game_id={ID6}"
|
|
#define DUTAG_URL "http://tag.darkumbra.net/{KEY}.update={ID6}"
|