Skip to content

Commit

Permalink
Qt: Fix auto updater
Browse files Browse the repository at this point in the history
CI didn't build it, so we missed it lol
  • Loading branch information
refractionpcsx2 committed May 25, 2022
1 parent 91e8a2c commit d1cdfaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2-qt/AutoUpdaterDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ QString AutoUpdaterDialog::getCurrentVersionDate()
QString AutoUpdaterDialog::getCurrentUpdateTag() const
{
#ifdef AUTO_UPDATER_SUPPORTED
return QString::fromStdString(QtHost::GetBaseStringSettingValue("AutoUpdater", "UpdateTag", THIS_RELEASE_TAG));
return QString::fromStdString(Host::GetBaseStringSettingValue("AutoUpdater", "UpdateTag", THIS_RELEASE_TAG));
#else
return QString();
#endif
Expand Down

0 comments on commit d1cdfaf

Please sign in to comment.