citra/src/citra_qt/config.h
archshift a59f57d504 Use config files to store whether SDMC is enabled or not
Before, it used to use whether the directory actually existed. As a result, .citra-emu/sdmc was never auto-created (something quite confusing to me until I read through the logs).
2014-10-22 15:24:25 -07:00

26 lines
422 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 ReadData();
void SaveData();
public:
Config();
~Config();
void Reload();
void Save();
};