diff options
author | StapleButter <thetotalworm@gmail.com> | 2017-05-11 19:57:49 +0200 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2017-05-11 19:57:49 +0200 |
commit | 9a2e2998e9569d42e99b06f044eec7065233b201 (patch) | |
tree | 2fb3dbc3482f9700d7c2a1d9af02fd1526b1f77f /src/NDS.cpp | |
parent | eb7154e426c26c9799a998db7a9e401cbea7f0a4 (diff) |
salvage socket init code
Diffstat (limited to 'src/NDS.cpp')
-rw-r--r-- | src/NDS.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/NDS.cpp b/src/NDS.cpp index 4c57bb6..8a3d13e 100644 --- a/src/NDS.cpp +++ b/src/NDS.cpp @@ -130,6 +130,7 @@ bool Init() if (!SPU::Init()) return false; if (!SPI::Init()) return false; if (!RTC::Init()) return false; + if (!Wifi::Init()) return false; return true; } @@ -150,6 +151,7 @@ void DeInit() SPU::DeInit(); SPI::DeInit(); RTC::DeInit(); + Wifi::DeInit(); } |