mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix (#891)
This commit is contained in:
parent
b5963888bb
commit
496e38baf6
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ void from_json(const nlohmann::json& json, DalamudStartInfo& config) {
|
|||
config.BootVehEnabled = json.value("BootVehEnabled", config.BootVehEnabled);
|
||||
config.BootVehFull = json.value("BootVehFull", config.BootVehFull);
|
||||
config.BootDotnetOpenProcessHookMode = json.value("BootDotnetOpenProcessHookMode", config.BootDotnetOpenProcessHookMode);
|
||||
if (const auto it = json.find("EnabledGameFixes"); it != json.end() && it->is_array()) {
|
||||
if (const auto it = json.find("BootEnabledGameFixes"); it != json.end() && it->is_array()) {
|
||||
config.BootEnabledGameFixes.clear();
|
||||
for (const auto& val : *it)
|
||||
config.BootEnabledGameFixes.insert(unicode::convert<std::string>(val.get<std::string>(), &unicode::lower));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue