mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
168 B
C++
12 lines
168 B
C++
|
struct Settings {
|
||
|
configuration config;
|
||
|
string folderpath;
|
||
|
bool synchronizeAudio;
|
||
|
bool muteAudio;
|
||
|
|
||
|
void load();
|
||
|
void save();
|
||
|
};
|
||
|
|
||
|
extern Settings *settings;
|