MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / Load

Method Load

FEXCore/Source/Interface/Config/Config.cpp:171–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169};
170
171void MetaLayer::Load() {
172 OptionMap.clear();
173
174 for (auto CurrentLayer = LoadOrder.begin(); CurrentLayer != LoadOrder.end(); ++CurrentLayer) {
175 auto it = ConfigLayers.find(*CurrentLayer);
176 if (it != ConfigLayers.end() && *CurrentLayer != Type) {
177 // Merge this layer's options to this layer
178 MergeConfigMap(it->second->GetOptionMap());
179 }
180 }
181}
182
183
184void MetaLayer::MergeEnvironmentVariables(const ConfigOption& Option, const DefaultValues::Type::StringArrayType& Value) {

Callers 2

LoadFunction · 0.45
ReloadMetaLayerFunction · 0.45

Calls 3

clearMethod · 0.80
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected