mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
- added 'cheats_url=' to wiiflow_lite.ini under [GENERAL]. it will default to 'https://codes.rc24.xyz/txt.php?txt=%s' but at least now it is not hard coded and can easily be changed by the user if it needs to be in the future.
This commit is contained in:
parent
bdefb68ff6
commit
5bfb7fcd19
Binary file not shown.
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 4.4 MiB After Width: | Height: | Size: 4.4 MiB |
@ -1,6 +1,6 @@
|
||||
|
||||
#define APP_NAME "WiiFlow WFL"
|
||||
#define APP_VERSION "5.5.0 beta 6"
|
||||
#define APP_VERSION "5.5.0 beta 7"
|
||||
|
||||
#define APP_DATA_DIR "wiiflow"
|
||||
#define APPS_DIR "apps/wiiflow"
|
||||
|
@ -25,7 +25,7 @@ int CMenu::_downloadCheatFileAsync()
|
||||
|
||||
const char *id = CoverFlow.getId();
|
||||
struct download file = {};
|
||||
downloadfile(fmt(GECKOURL, id), &file);
|
||||
downloadfile(fmt(m_cfg.getString("general", "cheats_url", GECKOURL).c_str(), id), &file);
|
||||
if(file.size > 0 && file.data[0] != '<')
|
||||
{
|
||||
m_thrdMessage = _t("dlmsg13", L"Saving...");
|
||||
|
Loading…
Reference in New Issue
Block a user