| 235 | } |
| 236 | |
| 237 | AppLoader::AppLoader(const fextl::string& Filename, FEXCore::Config::LayerType Type) |
| 238 | : OptionMapper(Type) { |
| 239 | const bool Global = Type == FEXCore::Config::LayerType::LAYER_GLOBAL_STEAM_APP || Type == FEXCore::Config::LayerType::LAYER_GLOBAL_APP; |
| 240 | Config = FEXCore::Config::GetApplicationConfig(Filename, Global); |
| 241 | |
| 242 | // Immediately load so we can reload the meta layer |
| 243 | Load(); |
| 244 | } |
| 245 | |
| 246 | void AppLoader::Load() { |
| 247 | SetCurrentConfigFile(Config); |
nothing calls this directly
no test coverage detected