summaryrefslogtreecommitdiff
path: root/settings_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'settings_gui.c')
-rw-r--r--settings_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings_gui.c b/settings_gui.c
index 57c56ea5a..88586746a 100644
--- a/settings_gui.c
+++ b/settings_gui.c
@@ -554,7 +554,7 @@ void ShowGameDifficulty(void)
DeleteWindowById(WC_GAME_OPTIONS, 0);
/* Copy current settings (ingame or in intro) to temporary holding place
* change that when setting stuff, copy back on clicking 'OK' */
- memcpy(&_opt_mod_temp, _opt_ptr, sizeof(GameOptions));
+ _opt_mod_temp = *_opt_ptr;
AllocateWindowDesc(&_game_difficulty_desc);
}