- remove texture name length limits for udmf maps

This commit is contained in:
Shawn Walker 2014-05-18 15:38:46 -07:00
commit 59885b856d
12 changed files with 1383 additions and 1377 deletions

View file

@ -41,8 +41,7 @@
FCanvasTexture::FCanvasTexture (const char *name, int width, int height)
{
strncpy (Name, name, 8);
Name[8] = 0;
Name = name;
Width = width;
Height = height;
LeftOffset = TopOffset = 0;