summaryrefslogtreecommitdiff
path: root/sound.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound.c')
-rw-r--r--sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound.c b/sound.c
index f8d194c97..af8c6ca53 100644
--- a/sound.c
+++ b/sound.c
@@ -186,7 +186,7 @@ void SndCopyToPool(void)
FileEntry *orig = &_files[_sound_idx[i]];
FileEntry *fe = AllocateFileEntry();
- memcpy(fe, orig, sizeof(*orig));
+ *fe = *orig;
fe->volume = _sound_base_vol[i];
fe->priority = 0;
}