mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-21 19:31:05 +00:00
Camera texture can be longer than 8 characters
This commit is contained in:
parent
92825a0870
commit
bbe651d366
1 changed files with 3 additions and 1 deletions
|
@ -74,12 +74,14 @@ namespace CodeImp.DoomBuilder.ZDoom
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
// Camera texture names are limited to 8 chars
|
// Camera texture names are limited to 8 chars
|
||||||
if(texturename.Length > DataManager.CLASIC_IMAGE_NAME_LENGTH)
|
if(texturename.Length > DataManager.CLASIC_IMAGE_NAME_LENGTH)
|
||||||
{
|
{
|
||||||
ReportError("Camera texture names must be no longer than " + DataManager.CLASIC_IMAGE_NAME_LENGTH + " chars");
|
ReportError("Camera texture names must be no longer than " + DataManager.CLASIC_IMAGE_NAME_LENGTH + " chars");
|
||||||
return false;
|
return false;
|
||||||
}
|
}*/
|
||||||
|
// [ZZ] not really. I've successfully tried it with >8 chars and it works.
|
||||||
|
|
||||||
// Width
|
// Width
|
||||||
int width = -1;
|
int width = -1;
|
||||||
|
|
Loading…
Reference in a new issue