config: Rename is_docked to use_docked_mode to be consistent with other config bools.

This commit is contained in:
bunnei 2018-03-26 22:59:18 -04:00
parent f1423fcbc1
commit 5ecf152c8e
7 changed files with 14 additions and 14 deletions

View file

@ -242,20 +242,20 @@ void ICommonStateGetter::GetCurrentFocusState(Kernel::HLERequestContext& ctx) {
}
void ICommonStateGetter::GetOperationMode(Kernel::HLERequestContext& ctx) {
const bool is_docked{Settings::values.is_docked};
const bool use_docked_mode{Settings::values.use_docked_mode};
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push(static_cast<u8>(is_docked ? OperationMode::Docked : OperationMode::Handheld));
rb.Push(static_cast<u8>(use_docked_mode ? OperationMode::Docked : OperationMode::Handheld));
LOG_WARNING(Service_AM, "(STUBBED) called");
}
void ICommonStateGetter::GetPerformanceMode(Kernel::HLERequestContext& ctx) {
const bool is_docked{Settings::values.is_docked};
const bool use_docked_mode{Settings::values.use_docked_mode};
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push(static_cast<u32>(is_docked ? APM::PerformanceMode::Docked
: APM::PerformanceMode::Handheld));
rb.Push(static_cast<u32>(use_docked_mode ? APM::PerformanceMode::Docked
: APM::PerformanceMode::Handheld));
LOG_WARNING(Service_AM, "(STUBBED) called");
}

View file

@ -112,7 +112,7 @@ enum class CpuCore {
struct Values {
// System
bool is_docked;
bool use_docked_mode;
// Controls
std::array<std::string, NativeButton::NumButtons> buttons;