mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
- v5.5.3
This commit is contained in:
parent
20a307e175
commit
bf5870677a
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_NAME "WiiFlow WFL"
|
||||||
#define APP_VERSION "5.5.3 beta 2"
|
#define APP_VERSION "5.5.3"
|
||||||
|
|
||||||
#define APP_DATA_DIR "wiiflow"
|
#define APP_DATA_DIR "wiiflow"
|
||||||
#define APPS_DIR "apps/wiiflow"
|
#define APPS_DIR "apps/wiiflow"
|
||||||
|
@ -38,8 +38,10 @@ void CMenu::_sourceFlow()
|
|||||||
string trs;
|
string trs;
|
||||||
const dir_discHdr *hdr = CoverFlow.getHdr();
|
const dir_discHdr *hdr = CoverFlow.getHdr();
|
||||||
|
|
||||||
// save source number for return
|
// save source menu button number for centering coverflow on that cover when we come back to sourceflow.
|
||||||
sm_numbers[sm_numbers.size() - 1] = std::to_string(hdr->settings[0]);
|
// we use a vector because of the tiers
|
||||||
|
sm_numbers[sm_numbers.size() - 1] = std::to_string(hdr->settings[0]);// hdr->settings[0] is the number of the source menu button.
|
||||||
|
// create string of numbers to save in wiiflow_lite.ini.
|
||||||
numbers = sm_numbers[0];
|
numbers = sm_numbers[0];
|
||||||
for(u8 i = 1; i < sm_numbers.size(); i++)
|
for(u8 i = 1; i < sm_numbers.size(); i++)
|
||||||
numbers.append(',' + sm_numbers[i]);
|
numbers.append(',' + sm_numbers[i]);
|
||||||
@ -81,7 +83,7 @@ void CMenu::_sourceFlow()
|
|||||||
for(i = 0; i < magicNums.size(); i++)
|
for(i = 0; i < magicNums.size(); i++)
|
||||||
{
|
{
|
||||||
u8 pos = m_plugin.GetPluginPosition(strtoul(magicNums[i].c_str(), NULL, 16));
|
u8 pos = m_plugin.GetPluginPosition(strtoul(magicNums[i].c_str(), NULL, 16));
|
||||||
if(pos < 255)
|
if(pos < 255)// if pos == 255 then it doesn't exist
|
||||||
{
|
{
|
||||||
enabledPluginsCount++;
|
enabledPluginsCount++;
|
||||||
m_plugin.SetEnablePlugin(pos, 2);
|
m_plugin.SetEnablePlugin(pos, 2);
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name>WiiFlow WFL</name>
|
<name>WiiFlow WFL</name>
|
||||||
<coder>Fledge68</coder>
|
<coder>Fledge68</coder>
|
||||||
<version>5.5.2</version>
|
<version>5.5.3</version>
|
||||||
<release_date>20220207000000</release_date>
|
<release_date>20220323000000</release_date>
|
||||||
<!-- // remove this line to enable arguments
|
<!-- // remove this line to enable arguments
|
||||||
<arguments>
|
<arguments>
|
||||||
<arg>ios=249</arg>
|
<arg>ios=249</arg>
|
||||||
|
Loading…
Reference in New Issue
Block a user