--------------------------------- Config::Save Save the configuration to disk
| 133 | // Save the configuration to disk |
| 134 | // |
| 135 | void Config::Save() |
| 136 | { |
| 137 | if (!core::serialization::SerializeToFile(GetUserDirPath() + s_ConfigFileRelativePath, m_Settings)) |
| 138 | { |
| 139 | LOG("Config::Save > unable to serialize settings to config file", core::LogLevel::Warning); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | |
| 144 | } // namespace fw |
nothing calls this directly
no outgoing calls
no test coverage detected