summaryrefslogtreecommitdiff
path: root/src/hexen/s_sound.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hexen/s_sound.c')
-rw-r--r--src/hexen/s_sound.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/hexen/s_sound.c b/src/hexen/s_sound.c
index 3f1a1e76..71944f11 100644
--- a/src/hexen/s_sound.c
+++ b/src/hexen/s_sound.c
@@ -981,11 +981,13 @@ void S_InitScript(void)
SC_MustGetString();
if (*sc_String != '?')
{
- strcpy(S_sfx[i].name, sc_String);
+ M_StringCopy(S_sfx[i].name, sc_String,
+ sizeof(S_sfx[i].name));
}
else
{
- strcpy(S_sfx[i].name, "default");
+ M_StringCopy(S_sfx[i].name, "default",
+ sizeof(S_sfx[i].name));
}
break;
}
@@ -1002,7 +1004,7 @@ void S_InitScript(void)
{
if (!strcmp(S_sfx[i].name, ""))
{
- strcpy(S_sfx[i].name, "default");
+ M_StringCopy(S_sfx[i].name, "default", sizeof(S_sfx[i].name));
}
}
}