small correction of a memory-clearing line in namesdyn.c

git-svn-id: https://svn.eduke32.com/eduke32@2283 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-01-26 21:58:39 +00:00
parent 98ffd6f00c
commit da218f7e65

View file

@ -1544,7 +1544,9 @@ void freehashnames()
void G_InitDynamicTiles(void)
{
int32_t i = 0;
clearbufbyte(DynamicTileMap,MAXTILES,0);
Bmemset(DynamicTileMap, 0, sizeof(DynamicTileMap));
while (list[i].val)
{
DynamicTileMap[list[i].val]=list[i].vstat;