| 73 | extern void UserConfig_SaveDifficulties(const UserConfig& uc); |
| 74 | |
| 75 | void Config::LoadDifficulties() |
| 76 | { |
| 77 | UserConfig_LoadDifficulties(USER_CONFIG); |
| 78 | |
| 79 | ParamFile userCfg; |
| 80 | userCfg.Parse(::GetUserParams()); |
| 81 | const ParamEntry* entry = userCfg.FindEntry("showRadio"); |
| 82 | if (entry) |
| 83 | { |
| 84 | GChatList.Enable(*entry); |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | void Config::SaveDifficulties() |
| 89 | { |
nothing calls this directly
no test coverage detected