writebsp.cc: remove unneeded memset

map.exported_texinfos.push_back({}); will push a zeroed gtexinfo_t.
This commit is contained in:
Eric Wasylishen 2021-09-22 22:34:36 -06:00
parent 4c5d8b99f9
commit 70aa7ebcdb
1 changed files with 0 additions and 1 deletions

View File

@ -88,7 +88,6 @@ ExportMapTexinfo(int texinfonum)
map.exported_texinfos.push_back({});
gtexinfo_t* dest = &map.exported_texinfos.back();
memset(dest, 0, sizeof(dest));
dest->flags = src->flags;
dest->miptex = src->miptex;