Change max vertices to 65534 to avoid conflict with strip cut index

This commit is contained in:
rdb 2014-10-27 13:25:38 +00:00
parent 241adfe34d
commit 6d6a4398c6
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ ConfigVariableEnum<EggRenderMode::AlphaMode> egg_alpha_mode
"or because of a four-channel texture."));
ConfigVariableInt egg_max_vertices
("egg-max-vertices", 65535,
("egg-max-vertices", 65534,
PRC_DESC("Specifies the maximum number of vertices that will be "
"added to any one GeomVertexData by the egg loader."));

View File

@ -265,7 +265,7 @@ ConfigVariableBool depth_offset_decals
"their depth offset implementation."));
ConfigVariableInt max_collect_vertices
("max-collect-vertices", 65535,
("max-collect-vertices", 65534,
PRC_DESC("Specifies the maximum number of vertices that are allowed to be "
"accumulated into any one GeomVertexData structure as a result "
"of collecting objects together during a flatten operation. "