mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Some tidy up of sprintf to StringFromFormat
Includes a small fix to SetupWiiMemory
This commit is contained in:
parent
8d25e12085
commit
32bfcc034f
14 changed files with 68 additions and 110 deletions
|
@ -140,6 +140,10 @@ public:
|
|||
void SetLines(const char* sectionName, const std::vector<std::string> &lines);
|
||||
bool GetLines(const char* sectionName, std::vector<std::string>& lines, const bool remove_comments = true) const;
|
||||
|
||||
inline bool DeleteKey(const char* sectionName, const std::string& key)
|
||||
{
|
||||
return DeleteKey(sectionName, key.c_str());
|
||||
}
|
||||
bool DeleteKey(const char* sectionName, const char* key);
|
||||
bool DeleteSection(const char* sectionName);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue