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:
parent
8650e12364
commit
7e24a5f3a5
1 changed files with 1 additions and 1 deletions
|
@ -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() + "\"");
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue