From ebf33f32fa6056191bb39a0665bcef2dd201f3ba Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 13 Apr 2025 13:58:46 +1000 Subject: [PATCH] FullscreenUI: Crash fix --- src/core/fullscreen_ui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/fullscreen_ui.cpp b/src/core/fullscreen_ui.cpp index df0c934aa..adb66188d 100644 --- a/src/core/fullscreen_ui.cpp +++ b/src/core/fullscreen_ui.cpp @@ -4949,7 +4949,8 @@ void FullscreenUI::DrawControllerSettingsPage() continue; DrawInputBindingButton(bsi, InputBindingInfo::Type::Macro, section.c_str(), - TinyString::from_format("Macro{}", macro_index + 1), FSUI_CSTR("Trigger"), nullptr, true); + TinyString::from_format("Macro{}", macro_index + 1), FSUI_CSTR("Trigger"), + std::string_view(), true); SmallString binds_string = bsi->GetSmallStringValue(section.c_str(), TinyString::from_format("Macro{}Binds", macro_index + 1).c_str());