1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Merge pull request #1483 from trigger-death/themes-fix-3

Fixed theme features on duplication
This commit is contained in:
Ted John
2015-06-25 23:32:30 +01:00

View File

@@ -198,6 +198,7 @@ void theme_create_preset(int duplicate, const char *name)
for (int i = 0; i < (int)gNumThemeWindows; i++) {
gConfigThemes.presets[preset].windows[i] = gConfigThemes.presets[duplicate].windows[i];
}
gConfigThemes.presets[preset].features = gConfigThemes.presets[duplicate].features;
themes_save_preset(preset);
theme_change_preset(preset);
}