Skip to content

Commit

Permalink
UI|SavegameSelectionWidget: Fix loading of savegames from the selecti…
Browse files Browse the repository at this point in the history
…on widget
  • Loading branch information
danij-deng committed Mar 20, 2014
1 parent 24a4c66 commit 579b6bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/client/src/ui/widgets/savegameselectionwidget.cpp
Expand Up @@ -270,7 +270,7 @@ SavegameSelectionWidget::LoadAction::LoadAction(SavedSession const &session)
: d(new Instance)
{
d->gameId = session.metadata().gets("gameIdentityKey");
d->cmd = "loadgame " + session.path() + " confirm";
d->cmd = "loadgame " + session.path().fileName() + " confirm";
}

void SavegameSelectionWidget::LoadAction::trigger()
Expand Down

0 comments on commit 579b6bf

Please sign in to comment.