| 2105 | } |
| 2106 | |
| 2107 | void Pcsx2Config::CopyConfiguration(SettingsInterface* dest_si, SettingsInterface& src_si) |
| 2108 | { |
| 2109 | FPControlRegisterBackup fpcr_backup(FPControlRegister::GetDefault()); |
| 2110 | |
| 2111 | Pcsx2Config temp; |
| 2112 | { |
| 2113 | SettingsLoadWrapper wrapper(src_si); |
| 2114 | temp.LoadSaveCore(wrapper); |
| 2115 | } |
| 2116 | { |
| 2117 | SettingsSaveWrapper wrapper(*dest_si); |
| 2118 | temp.LoadSaveCore(wrapper); |
| 2119 | } |
| 2120 | } |
| 2121 | |
| 2122 | void Pcsx2Config::ClearConfiguration(SettingsInterface* dest_si) |
| 2123 | { |
nothing calls this directly
no test coverage detected