diff options
| author | bunnei <bunneidev@gmail.com> | 2014-12-15 18:45:53 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2014-12-15 18:45:53 -0500 |
| commit | d0ce9d58f6607fd0d7cc1ed685d01cc1f55b0839 (patch) | |
| tree | 5d458d4768cd95942154f1b2c9298fac04882700 /src/core/hle/service/ac_u.cpp | |
| parent | 1ee740898ab6951e21fad864a40260c7d3c1027f (diff) | |
| parent | e321decf98a6b0041e4d6b30ca79f24308bbb82c (diff) | |
Merge pull request #279 from yuriks/session
Remove SyncRequest from K::Object and create a new K::Session type
Diffstat (limited to 'src/core/hle/service/ac_u.cpp')
| -rw-r--r-- | src/core/hle/service/ac_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ac_u.cpp b/src/core/hle/service/ac_u.cpp index 4130feb9d..311682abf 100644 --- a/src/core/hle/service/ac_u.cpp +++ b/src/core/hle/service/ac_u.cpp @@ -18,7 +18,7 @@ namespace AC_U { * 2 : Output connection type, 0 = none, 1 = Old3DS Internet, 2 = New3DS Internet. */ void GetWifiStatus(Service::Interface* self) { - u32* cmd_buff = Service::GetCommandBuffer(); + u32* cmd_buff = Kernel::GetCommandBuffer(); // TODO(purpasmart96): This function is only a stub, // it returns a valid result without implementing full functionality. |
