Change construction of ModConfigQueueSaveMod.

This commit is contained in:
Dario 2025-01-31 22:21:21 -03:00 committed by Mr-Wiseguy
parent 21bea3b0d1
commit 8147964aa5

View file

@ -1324,7 +1324,7 @@ void recomp::mods::ModContext::set_mod_config_value(size_t mod_index, const std:
}
// Notify the asynchronous thread it should save the configuration for this mod.
mod_configuration_thread_queue.enqueue(ModConfigQueueSaveMod(mod.manifest.mod_id));
mod_configuration_thread_queue.enqueue(ModConfigQueueSaveMod{ mod.manifest.mod_id });
}
void recomp::mods::ModContext::set_mod_config_value(const std::string &mod_id, const std::string &option_id, const ConfigValueVariant &value) {