diff --git a/app/src/main/cpp/skyline/applet/controller_applet.cpp b/app/src/main/cpp/skyline/applet/controller_applet.cpp index 75348439..c39ab51a 100644 --- a/app/src/main/cpp/skyline/applet/controller_applet.cpp +++ b/app/src/main/cpp/skyline/applet/controller_applet.cpp @@ -20,9 +20,10 @@ namespace skyline::applet { void ControllerApplet::HandleShowControllerSupport(input::NpadStyleSet styleSet, ControllerAppletVersion version, span arg) { // Generic macro due to both versions of arguments sharing the same fields but having different layouts auto handle{[&](auto controllerSupportModeArg) { - Logger::Info("playerCountMin: {}, playerCountMax: {}, " - "enableTakeOverConnection: {}, enableLeftJustify: {}, enablePermitJoyDual: {}, enableSingleMode: {}, " - "enableIdentificationColor: {}, enableExplainText: {}", + Logger::InfoNoPrefix("Controller Support: " + "Player Count: {} - {}, " + "Take Over Connection: {}, Left Justify: {}, Dual Joy-Con Allowed: {}, Single Mode Enabled: {}, " + "Identification Color Enabled: {}, Explain Text Enabled: {}", controllerSupportModeArg.playerCountMin, controllerSupportModeArg.playerCountMax, controllerSupportModeArg.enableTakeOverConnection, controllerSupportModeArg.enableLeftJustify, controllerSupportModeArg.enablePermitJoyDual, controllerSupportModeArg.enableSingleMode, controllerSupportModeArg.enableIdentificationColor, controllerSupportModeArg.enableExplainText); @@ -108,4 +109,4 @@ namespace skyline::applet { } void ControllerApplet::PushInteractiveDataToApplet(std::shared_ptr data) {} -} \ No newline at end of file +}