diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/hexen/r_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hexen/r_data.c b/src/hexen/r_data.c index d9f76bcb..e99ecc21 100644 --- a/src/hexen/r_data.c +++ b/src/hexen/r_data.c @@ -314,7 +314,7 @@ void R_InitTextures(void) patchlookup = Z_Malloc(nummappatches * sizeof(*patchlookup), PU_STATIC, NULL); for (i = 0; i < nummappatches; i++) { - M_StringCopy(name, name_p + i * 8, 8); + M_StringCopy(name, name_p + i * 8, sizeof(name)); patchlookup[i] = W_CheckNumForName(name); } W_ReleaseLumpName("PNAMES"); |