CommonHostInterface: Fully clear controller section before loading profile
This commit is contained in:
committed by
Connor McLaughlin
parent
a5f04f2a8e
commit
189656cbc4
@ -115,3 +115,8 @@ void LibretroSettingsInterface::DeleteValue(const char* section, const char* key
|
||||
{
|
||||
Log_ErrorPrintf("DeleteValue(\"%s\", \"%s\") not implemented", section, key);
|
||||
}
|
||||
|
||||
void LibretroSettingsInterface::ClearSection(const char* section)
|
||||
{
|
||||
Log_ErrorPrintf("ClearSection(\"%s\") not implemented", section);
|
||||
}
|
||||
|
||||
@ -22,4 +22,5 @@ public:
|
||||
bool AddToStringList(const char* section, const char* key, const char* item) override;
|
||||
|
||||
void DeleteValue(const char* section, const char* key) override;
|
||||
};
|
||||
void ClearSection(const char* section) override;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user