mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-04 17:05:33 +01:00

Settings that come from the SYSCONF are now included in Dolphin's config system as part of the base layer. They are handled in a special way compared to other settings to make sure they are only loaded from and saved to the SYSCONF (to avoid different, possibly contradicting sources of truth).
20 lines
346 B
C++
20 lines
346 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace Config
|
|
{
|
|
class ConfigLayerLoader;
|
|
class Layer;
|
|
}
|
|
|
|
namespace ConfigLoaders
|
|
{
|
|
void SaveToSYSCONF(Config::Layer* layer);
|
|
std::unique_ptr<Config::ConfigLayerLoader> GenerateBaseConfigLoader();
|
|
}
|