- 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:
Fledge68 2021-09-27 07:10:22 -05:00
parent bdefb68ff6
commit 5bfb7fcd19
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 MiB

After

Width:  |  Height:  |  Size: 4.4 MiB

View File

@ -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"

View File

@ -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...");