ILLUSIONS: Fix conversion to string

This commit is contained in:
aryanrawlani28 2020-08-21 13:25:15 +05:30 committed by Eugene Sandulenko
parent 44230b6c8a
commit 579b370183

View File

@ -702,7 +702,7 @@ void MenuActionSaveGame::execute() {
dialog = new GUI::SaveLoadChooser(_("Save game:"), _("Save"), true);
slot = dialog->runModalWithCurrentTarget();
desc = dialog->getResultString().encode().c_str();
desc = dialog->getResultString().encode();
delete dialog;