INISettingsInterface: Make constructor parameter a std::string

This commit is contained in:
Connor McLaughlin
2020-04-05 22:57:29 +10:00
parent 45d7294c3c
commit 70ccdcfc30
3 changed files with 6 additions and 6 deletions

View File

@ -6,7 +6,7 @@
class INISettingsInterface : public SettingsInterface
{
public:
INISettingsInterface(const char* filename);
INISettingsInterface(std::string filename);
~INISettingsInterface();
void Clear() override;