| 8231 | } |
| 8232 | |
| 8233 | void inputdevice_copyjports(struct uae_prefs *srcprefs, struct uae_prefs *dstprefs) |
| 8234 | { |
| 8235 | for (int i = 0; i < MAX_JPORTS; i++) { |
| 8236 | copyjport(srcprefs, dstprefs, i); |
| 8237 | } |
| 8238 | if (srcprefs) { |
| 8239 | for (int i = 0; i < MAX_JPORTS_CUSTOM; i++) { |
| 8240 | _tcscpy(dstprefs->jports_custom[i].custom, srcprefs->jports_custom[i].custom); |
| 8241 | } |
| 8242 | } |
| 8243 | } |
| 8244 | |
| 8245 | void inputdevice_updateconfig_internal (struct uae_prefs *srcprefs, struct uae_prefs *dstprefs) |
| 8246 | { |
no test coverage detected