summaryrefslogtreecommitdiff
path: root/src/hexen/d_net.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hexen/d_net.c')
-rw-r--r--src/hexen/d_net.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hexen/d_net.c b/src/hexen/d_net.c
index 5c64f7ed..19a43584 100644
--- a/src/hexen/d_net.c
+++ b/src/hexen/d_net.c
@@ -35,6 +35,7 @@
#include "i_video.h"
#include "i_videohr.h"
#include "h2def.h"
+#include "m_misc.h"
#include "p_local.h"
#include "s_sound.h"
#include "w_checksum.h"
@@ -61,7 +62,7 @@ static void PlayerQuitGame(player_t *player)
player_num = player - players;
- strcpy(exitmsg, "PLAYER 1 LEFT THE GAME");
+ M_StringCopy(exitmsg, "PLAYER 1 LEFT THE GAME", sizeof(exitmsg));
exitmsg[7] += player_num;
P_SetMessage(&players[consoleplayer], exitmsg, true);
S_StartSound(NULL, SFX_CHAT);