SPU2: linux fix where config wasn't setup on init & savestate bump

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2020-09-29 10:31:12 +02:00 committed by refractionpcsx2
parent 1e7b69b1ab
commit b11ad72473
5 changed files with 7 additions and 9 deletions

View File

@ -82,10 +82,7 @@ void ReadSettings()
// For some reason this can be called before we know what ini file we're writing to.
// Lets not try to read it if that happens.
if (!pathSet)
{
FileLog("Read called without the path set.\n");
return;
}
initIni();
Interpolation = CfgReadInt(L"MIXING", L"Interpolation", 4);
EffectsDisabled = CfgReadBool(L"MIXING", L"Disable_Effects", false);

View File

@ -19,6 +19,7 @@
#include "Dma.h"
#ifdef __linux__
#include "Linux/Dialogs.h"
#include "Linux/Config.h"
#elif defined(_WIN32)
#include "Windows/Dialogs.h"
#endif