mirror of https://github.com/PCSX2/pcsx2.git
22 lines
305 B
C++
22 lines
305 B
C++
#include <stdlib.h>
|
|
|
|
#include "../USB.h"
|
|
|
|
#include "CfgHelpers.h"
|
|
|
|
void CALLBACK USBsetSettingsDir( const char* dir )
|
|
{
|
|
CfgSetSettingsDir(dir);
|
|
}
|
|
|
|
void SaveConfig()
|
|
{
|
|
CfgWriteBool(L"Interface", L"Logging", conf.Log);
|
|
}
|
|
|
|
void LoadConfig()
|
|
{
|
|
conf.Log = CfgReadBool(L"Interface", L"Logging", false);
|
|
}
|
|
|