From b65522a97c52ca685cbcc7f028120bfa3ad5a649 Mon Sep 17 00:00:00 2001 From: Cvolton Date: Wed, 27 Nov 2024 09:00:25 +0100 Subject: [PATCH] fix android build --- src/hooks/GJLevelList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/GJLevelList.cpp b/src/hooks/GJLevelList.cpp index f7b195e..812ad6a 100644 --- a/src/hooks/GJLevelList.cpp +++ b/src/hooks/GJLevelList.cpp @@ -11,7 +11,7 @@ class BI_DLL $modify(BIGJLevelList, GJLevelList) { void showListInfo() { static_assert(&GJLevelList::showListInfo, "Hook not implemented"); - std::string info = getUnpackedDescription() + "\n\n"; + std::string info = std::string(getUnpackedDescription()) + "\n\n"; if(info.empty()) info = "(No description provided)\n\n"; if(m_listID > 0) info += fmt::format("List ID: {}\n", m_listID);