summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/createinstancedialogpages.cpp2
-rw-r--r--src/profile.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/createinstancedialogpages.cpp b/src/createinstancedialogpages.cpp
index 6173335a..481f032d 100644
--- a/src/createinstancedialogpages.cpp
+++ b/src/createinstancedialogpages.cpp
@@ -474,7 +474,7 @@ void GamePage::updateButton(Game* g)
return;
}
- g->button->setText(g->game->gameName());
+ g->button->setText(g->game->gameName().replace("&", "&&"));
g->button->setIcon(g->game->gameIcon());
if (g->installed) {
diff --git a/src/profile.cpp b/src/profile.cpp
index 42a2ad16..b4b0ddcb 100644
--- a/src/profile.cpp
+++ b/src/profile.cpp
@@ -1073,7 +1073,7 @@ void Profile::storeSettingsByArray(const QString &prefix, const QList<QVariantMa
bool Profile::forcedLibrariesEnabled(const QString &executable) const
{
- return setting("forced_libraries", executable + "/enabled", false).toBool();
+ return setting("forced_libraries", executable + "/enabled", true).toBool();
}
void Profile::setForcedLibrariesEnabled(const QString &executable, bool enabled)