DQt2: Add a message if the game list is empty.

This commit is contained in:
spxtr
2016-01-01 02:29:39 -08:00
parent 552ea58bf5
commit 48d1adb96f
10 changed files with 76 additions and 19 deletions

View File

@ -105,6 +105,16 @@ DiscIO::IVolume::ELanguage Settings::GetGCSystemLanguage() const
return SConfig::GetInstance().GetCurrentLanguage(false);
}
bool Settings::GetPreferredView() const
{
return value(QStringLiteral("PreferredView"), true).toBool();
}
void Settings::SetPreferredView(bool table)
{
setValue(QStringLiteral("PreferredView"), table);
}
bool Settings::GetConfirmStop() const
{
return value(QStringLiteral("Emulation/ConfirmStop"), true).toBool();