-now at major version 5

-removed svn revision number. no longer needed.
This commit is contained in:
Fledge68 2018-11-05 14:29:31 -06:00
parent bc19bb6c34
commit 01e7899c69
5 changed files with 2 additions and 16 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 3.3 MiB

View File

@ -6,7 +6,6 @@
#include "gui/text.hpp"
#include "defines.h"
static const string &VERSION_STRING = sfmt("%s %s (r%s)", APP_NAME, APP_VERSION, SVN_REV);
static const wstringEx SVN_REV_W(SVN_REV);
static const string &VERSION_STRING = sfmt("%s %s", APP_NAME, APP_VERSION);
static const wstringEx PLAYER_BATTERY_LABEL("P1 %003.f%% | P2 %003.f%% | P3 %003.f%% | P4 %003.f%%");
#endif

View File

@ -2,8 +2,7 @@
#include "loader/sys.h"
#define APP_NAME "WiiFlow Lite"
#define APP_VERSION "4.5.0"
#define SVN_REV "1162"
#define APP_VERSION "5.0.0"
#define APP_DATA_DIR "wiiflow"
#ifdef APP_WIIFLOW

View File

@ -39,8 +39,6 @@ CMenu mainMenu;
u8 CMenu::downloadStack[8192] ATTRIBUTE_ALIGN(32);
const u32 CMenu::downloadStackSize = 8192;
const int CMenu::SVN_REV_NUM = atoi(SVN_REV);
CMenu::CMenu()
{
m_aa = 0;
@ -271,15 +269,6 @@ bool CMenu::init()
strncpy(emu_nands_dir, IsOnWiiU() ? "vwiinands" : "nands", 64);
_checkEmuNandSettings();
/* Cache Reload Checks */
int ini_rev = m_cfg.getInt("GENERAL", "ini_rev", 0);
if(ini_rev != SVN_REV_NUM)
{
fsop_deleteFolder(m_listCacheDir.c_str());
fsop_MakeFolder(m_listCacheDir.c_str());
}
m_cfg.setInt("GENERAL", "ini_rev", SVN_REV_NUM);
CoverFlow.init(m_base_font, m_base_font_size, m_vid.vid_50hz());
/* Load categories and theme INI files */

View File

@ -1225,7 +1225,6 @@ private:
static int _version[9];
static const SCFParamDesc _cfParams[];
static const int _nbCfgPages;
static const int SVN_REV_NUM;
//thread stack
static u8 downloadStack[8192];
static const u32 downloadStackSize;