Skip to content

Commit

Permalink
- v5.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Fledge68 committed Mar 23, 2022
1 parent 20a307e commit bf58706
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
Binary file modified out/bins/ext_booter.bin
Binary file not shown.
Binary file modified out/boot.dol
Binary file not shown.
2 changes: 1 addition & 1 deletion source/defines.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

#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 APPS_DIR "apps/wiiflow"
Expand Down
8 changes: 5 additions & 3 deletions source/menu/menu_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ void CMenu::_sourceFlow()
string trs;
const dir_discHdr *hdr = CoverFlow.getHdr();

// save source number for return
sm_numbers[sm_numbers.size() - 1] = std::to_string(hdr->settings[0]);
// save source menu button number for centering coverflow on that cover when we come back to sourceflow.
// 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];
for(u8 i = 1; i < sm_numbers.size(); i++)
numbers.append(',' + sm_numbers[i]);
Expand Down Expand Up @@ -81,7 +83,7 @@ void CMenu::_sourceFlow()
for(i = 0; i < magicNums.size(); i++)
{
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++;
m_plugin.SetEnablePlugin(pos, 2);
Expand Down
4 changes: 2 additions & 2 deletions wii/apps/wiiflow/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>WiiFlow WFL</name>
<coder>Fledge68</coder>
<version>5.5.2</version>
<release_date>20220207000000</release_date>
<version>5.5.3</version>
<release_date>20220323000000</release_date>
<!-- // remove this line to enable arguments
<arguments>
<arg>ios=249</arg>
Expand Down

0 comments on commit bf58706

Please sign in to comment.