Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Software Renderer: Show each backend's display name instead of its sh…
…ort name in the config dialog.
  • Loading branch information
neobrain committed Aug 12, 2013
1 parent c05aa01 commit 057551a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -51,7 +51,7 @@ VideoConfigDialog::VideoConfigDialog(wxWindow* parent, const std::string& title,
it = g_available_video_backends.begin(),
itend = g_available_video_backends.end();
for (; it != itend; ++it)
choice_backend->AppendString(StrToWxStr((*it)->GetName()));
choice_backend->AppendString(StrToWxStr((*it)->GetDisplayName()));

// TODO: How to get the translated plugin name?
choice_backend->SetStringSelection(StrToWxStr(g_video_backend->GetName()));
Expand Down

0 comments on commit 057551a

Please sign in to comment.