From f63fdcf7fa9e28c482bb31ce58f75ce73b1e24c1 Mon Sep 17 00:00:00 2001 From: "Daniel K. O. (dkosmari)" Date: Wed, 5 Feb 2025 14:02:42 -0300 Subject: [PATCH] Reverted back to `.c_str()` use. --- src/UpdaterCheck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UpdaterCheck.cpp b/src/UpdaterCheck.cpp index 44114e3..e6d1f0c 100644 --- a/src/UpdaterCheck.cpp +++ b/src/UpdaterCheck.cpp @@ -132,7 +132,7 @@ void HandleOpenAromaUpdater(WUPSButtonCombo_ControllerTypes, WUPSButtonCombo_Com } NotificationModule_FinishDynamicNotification(sAromaUpdateHandle, 0.5f); sAromaUpdateHandle = 0; - if (const RPXLoaderStatus err = RPXLoader_LaunchHomebrew(sAromaUpdaterPath.data()); err == RPX_LOADER_RESULT_SUCCESS) { + if (const RPXLoaderStatus err = RPXLoader_LaunchHomebrew(sAromaUpdaterPath.c_str()); err == RPX_LOADER_RESULT_SUCCESS) { sUpdaterLaunched = true; } else { DEBUG_FUNCTION_LINE_ERR("RPXLoader_LaunchHomebrew failed: %s", RPXLoader_GetStatusStr(err));