Browse Source
set: Move logging macros over to new fmt-compatible ones
pull/15/merge
Lioncash
8 years ago
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7
2 changed files with
2 additions and
2 deletions
-
src/core/hle/service/set/set.cpp
-
src/core/hle/service/set/set_sys.cpp
|
|
|
@ -22,7 +22,7 @@ void SET::GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx) { |
|
|
|
|
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
|
|
|
|
LOG_WARNING(Service_SET, "(STUBBED) called"); |
|
|
|
NGLOG_WARNING(Service_SET, "(STUBBED) called"); |
|
|
|
} |
|
|
|
|
|
|
|
SET::SET() : ServiceFramework("set") { |
|
|
|
|
|
|
|
@ -16,7 +16,7 @@ void SET_SYS::GetColorSetId(Kernel::HLERequestContext& ctx) { |
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
rb.Push<u32>(0); |
|
|
|
|
|
|
|
LOG_WARNING(Service_SET, "(STUBBED) called"); |
|
|
|
NGLOG_WARNING(Service_SET, "(STUBBED) called"); |
|
|
|
} |
|
|
|
|
|
|
|
SET_SYS::SET_SYS() : ServiceFramework("set:sys") { |
|
|
|
|