From 7e24a5f3a55df8547b5ae7a71ab73c6867ce3f5a Mon Sep 17 00:00:00 2001 From: arch1t3cht Date: Sat, 20 Jan 2024 00:12:43 +0100 Subject: [PATCH] Fix compilation error for assdraw command This broke on wxWidgets master. Really this command could just be removed entirely but I'll keep it around for now. --- src/command/tool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command/tool.cpp b/src/command/tool.cpp index 1e8539c6a..f518d68f7 100644 --- a/src/command/tool.cpp +++ b/src/command/tool.cpp @@ -60,7 +60,7 @@ struct tool_assdraw final : public Command { STR_HELP("Launch the ASSDraw3 tool for vector drawing") void operator()(agi::Context *) override { - wxExecute("\"" + config::path->Decode("?data/ASSDraw3.exe").wstring() + "\""); + wxExecute("\"" + config::path->Decode("?data/ASSDraw3.exe").string() + "\""); } };