mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-27 13:44:15 +01:00
-now at major version 5
-removed svn revision number. no longer needed.
This commit is contained in:
parent
bc19bb6c34
commit
01e7899c69
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 3.3 MiB |
@ -6,7 +6,6 @@
|
|||||||
#include "gui/text.hpp"
|
#include "gui/text.hpp"
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
|
|
||||||
static const string &VERSION_STRING = sfmt("%s %s (r%s)", APP_NAME, APP_VERSION, SVN_REV);
|
static const string &VERSION_STRING = sfmt("%s %s", APP_NAME, APP_VERSION);
|
||||||
static const wstringEx SVN_REV_W(SVN_REV);
|
|
||||||
static const wstringEx PLAYER_BATTERY_LABEL("P1 %003.f%% | P2 %003.f%% | P3 %003.f%% | P4 %003.f%%");
|
static const wstringEx PLAYER_BATTERY_LABEL("P1 %003.f%% | P2 %003.f%% | P3 %003.f%% | P4 %003.f%%");
|
||||||
#endif
|
#endif
|
||||||
|
@ -2,8 +2,7 @@
|
|||||||
#include "loader/sys.h"
|
#include "loader/sys.h"
|
||||||
|
|
||||||
#define APP_NAME "WiiFlow Lite"
|
#define APP_NAME "WiiFlow Lite"
|
||||||
#define APP_VERSION "4.5.0"
|
#define APP_VERSION "5.0.0"
|
||||||
#define SVN_REV "1162"
|
|
||||||
|
|
||||||
#define APP_DATA_DIR "wiiflow"
|
#define APP_DATA_DIR "wiiflow"
|
||||||
#ifdef APP_WIIFLOW
|
#ifdef APP_WIIFLOW
|
||||||
|
@ -39,8 +39,6 @@ CMenu mainMenu;
|
|||||||
u8 CMenu::downloadStack[8192] ATTRIBUTE_ALIGN(32);
|
u8 CMenu::downloadStack[8192] ATTRIBUTE_ALIGN(32);
|
||||||
const u32 CMenu::downloadStackSize = 8192;
|
const u32 CMenu::downloadStackSize = 8192;
|
||||||
|
|
||||||
const int CMenu::SVN_REV_NUM = atoi(SVN_REV);
|
|
||||||
|
|
||||||
CMenu::CMenu()
|
CMenu::CMenu()
|
||||||
{
|
{
|
||||||
m_aa = 0;
|
m_aa = 0;
|
||||||
@ -271,15 +269,6 @@ bool CMenu::init()
|
|||||||
strncpy(emu_nands_dir, IsOnWiiU() ? "vwiinands" : "nands", 64);
|
strncpy(emu_nands_dir, IsOnWiiU() ? "vwiinands" : "nands", 64);
|
||||||
_checkEmuNandSettings();
|
_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());
|
CoverFlow.init(m_base_font, m_base_font_size, m_vid.vid_50hz());
|
||||||
|
|
||||||
/* Load categories and theme INI files */
|
/* Load categories and theme INI files */
|
||||||
|
@ -1225,7 +1225,6 @@ private:
|
|||||||
static int _version[9];
|
static int _version[9];
|
||||||
static const SCFParamDesc _cfParams[];
|
static const SCFParamDesc _cfParams[];
|
||||||
static const int _nbCfgPages;
|
static const int _nbCfgPages;
|
||||||
static const int SVN_REV_NUM;
|
|
||||||
//thread stack
|
//thread stack
|
||||||
static u8 downloadStack[8192];
|
static u8 downloadStack[8192];
|
||||||
static const u32 downloadStackSize;
|
static const u32 downloadStackSize;
|
||||||
|
Loading…
Reference in New Issue
Block a user