INISettingsInterface: Don't try to save with no filename

This commit is contained in:
Connor McLaughlin 2022-06-19 15:44:18 +10:00 committed by refractionpcsx2
parent f0f23a2c61
commit fce3414c65
1 changed files with 6 additions and 0 deletions

View File

@ -36,6 +36,9 @@ INISettingsInterface::~INISettingsInterface()
bool INISettingsInterface::Load()
{
if (m_filename.empty())
return false;
SI_Error err = SI_FAIL;
auto fp = FileSystem::OpenManagedCFile(m_filename.c_str(), "rb");
if (fp)
@ -46,6 +49,9 @@ bool INISettingsInterface::Load()
bool INISettingsInterface::Save()
{
if (m_filename.empty())
return false;
SI_Error err = SI_FAIL;
std::FILE* fp = FileSystem::OpenCFile(m_filename.c_str(), "wb");
if (fp)