- added option to init network on start (issue #335) but you have to manually edit wiiflow_lite.ini. there's no option in startup settings (yet). just add [GENERAL] async_network=yes and save it.

This commit is contained in:
Fledge68 2023-03-16 09:22:25 -05:00
parent 7d4db44456
commit 3ac8ecdc5c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 MiB

After

Width:  |  Height:  |  Size: 4.4 MiB

View File

@ -140,7 +140,7 @@ bool CMenu::init(bool usb_mounted)
/* Check if we want WiFi Gecko */ /* Check if we want WiFi Gecko */
m_use_wifi_gecko = m_cfg.getBool("DEBUG", "wifi_gecko", false); m_use_wifi_gecko = m_cfg.getBool("DEBUG", "wifi_gecko", false);
WiFiDebugger.SetBuffer(m_use_wifi_gecko); WiFiDebugger.SetBuffer(m_use_wifi_gecko);
if(m_use_wifi_gecko) if(m_use_wifi_gecko || m_cfg.getBool("GENERAL", "async_network", false))
_initAsyncNetwork(); _initAsyncNetwork();
/* Check if we want SD Gecko */ /* Check if we want SD Gecko */