Merge pull request #202 from wiidev/master

Fix Wii game booting on vWii - issue #192
This commit is contained in:
Fledge68 2020-09-21 05:39:19 -05:00 committed by GitHub
commit ef59eccaca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,8 +158,9 @@ void ShutdownBeforeExit(void)
WiFiDebugger.Close(); WiFiDebugger.Close();
//ftp_endTread(); //ftp_endTread();
wolfSSL_Cleanup(); wolfSSL_Cleanup();
net_wc24cleanup();
net_deinit(); net_deinit();
networkInit = false; networkInit = false;
} }
/* Avoid issues on vWii by always calling this */
net_wc24cleanup();
} }