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.
This commit is contained in:
arch1t3cht 2024-01-20 00:12:43 +01:00
parent 8650e12364
commit 7e24a5f3a5
1 changed files with 1 additions and 1 deletions

View File

@ -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() + "\"");
}
};