mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-23 07:30:40 +00:00
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:
parent
98ffd6f00c
commit
da218f7e65
1 changed files with 3 additions and 1 deletions
|
@ -1544,7 +1544,9 @@ void freehashnames()
|
||||||
void G_InitDynamicTiles(void)
|
void G_InitDynamicTiles(void)
|
||||||
{
|
{
|
||||||
int32_t i = 0;
|
int32_t i = 0;
|
||||||
clearbufbyte(DynamicTileMap,MAXTILES,0);
|
|
||||||
|
Bmemset(DynamicTileMap, 0, sizeof(DynamicTileMap));
|
||||||
|
|
||||||
while (list[i].val)
|
while (list[i].val)
|
||||||
{
|
{
|
||||||
DynamicTileMap[list[i].val]=list[i].vstat;
|
DynamicTileMap[list[i].val]=list[i].vstat;
|
||||||
|
|
Loading…
Reference in a new issue