mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4902 96395faa-99c1-11dd-bbfe-3dabce05a288
22 lines
326 B
C++
22 lines
326 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);
|
|
}
|
|
|