Fix a bunch of random warnings

This commit is contained in:
Connor McLaughlin
2020-09-13 11:54:51 +10:00
parent ccaff2e7cd
commit 3847be86b0
13 changed files with 62 additions and 277 deletions

View File

@ -7,6 +7,8 @@
Settings g_settings;
SettingsInterface::~SettingsInterface() = default;
const char* SettingInfo::StringDefaultValue() const
{
return default_value ? default_value : "";
@ -628,3 +630,4 @@ const char* Settings::GetMemoryCardTypeDisplayName(MemoryCardType type)
{
return s_memory_card_type_display_names[static_cast<int>(type)];
}