diff options
| author | 2018-04-24 10:14:52 -0400 | |
|---|---|---|
| committer | 2018-04-24 10:14:52 -0400 | |
| commit | e74dbfc5729a5daf44cd1057d39ebe45863d33d4 (patch) | |
| tree | 50728812b582daaf2b9bf2404500a2405f035e7c /src | |
| parent | am: Move logging macros over to new fmt-compatible ones (diff) | |
| download | yuzu-e74dbfc5729a5daf44cd1057d39ebe45863d33d4.tar.gz yuzu-e74dbfc5729a5daf44cd1057d39ebe45863d33d4.tar.xz yuzu-e74dbfc5729a5daf44cd1057d39ebe45863d33d4.zip | |
aoc: Move logging macros over to new fmt-compatible ones
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/aoc/aoc_u.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp index 6e7438580..5b6dfb48f 100644 --- a/src/core/hle/service/aoc/aoc_u.cpp +++ b/src/core/hle/service/aoc/aoc_u.cpp | |||
| @@ -27,14 +27,14 @@ void AOC_U::CountAddOnContent(Kernel::HLERequestContext& ctx) { | |||
| 27 | IPC::ResponseBuilder rb{ctx, 4}; | 27 | IPC::ResponseBuilder rb{ctx, 4}; |
| 28 | rb.Push(RESULT_SUCCESS); | 28 | rb.Push(RESULT_SUCCESS); |
| 29 | rb.Push<u64>(0); | 29 | rb.Push<u64>(0); |
| 30 | LOG_WARNING(Service_AOC, "(STUBBED) called"); | 30 | NGLOG_WARNING(Service_AOC, "(STUBBED) called"); |
| 31 | } | 31 | } |
| 32 | 32 | ||
| 33 | void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) { | 33 | void AOC_U::ListAddOnContent(Kernel::HLERequestContext& ctx) { |
| 34 | IPC::ResponseBuilder rb{ctx, 4}; | 34 | IPC::ResponseBuilder rb{ctx, 4}; |
| 35 | rb.Push(RESULT_SUCCESS); | 35 | rb.Push(RESULT_SUCCESS); |
| 36 | rb.Push<u64>(0); | 36 | rb.Push<u64>(0); |
| 37 | LOG_WARNING(Service_AOC, "(STUBBED) called"); | 37 | NGLOG_WARNING(Service_AOC, "(STUBBED) called"); |
| 38 | } | 38 | } |
| 39 | 39 | ||
| 40 | void InstallInterfaces(SM::ServiceManager& service_manager) { | 40 | void InstallInterfaces(SM::ServiceManager& service_manager) { |