mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-04 13:57:52 +00:00
80e9c02bd6
Add support for disabling log from settings
30 lines
524 B
C++
30 lines
524 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <QSettings>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
class Config {
|
|
QSettings* qt_config;
|
|
std::string qt_config_loc;
|
|
|
|
void ReadControls();
|
|
void SaveControls();
|
|
void ReadCore();
|
|
void SaveCore();
|
|
void ReadData();
|
|
void SaveData();
|
|
|
|
void ReadMiscellaneous();
|
|
void SaveMiscellaneous();
|
|
public:
|
|
Config();
|
|
~Config();
|
|
|
|
void Reload();
|
|
void Save();
|
|
};
|