Increase maximum number of material-texture combinations to 255

This is the maximum we can do. One value is reserved for diff / transparency,
and we have 8bpp surfaces.
lights3
Armin Burgmeier 2015-07-07 22:23:24 -04:00
parent 56d48f5300
commit c43ca4ce9a
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ const int
const int
C4M_MaxName = 15,
C4M_MaxDefName = 2*C4M_MaxName+1,
C4M_MaxTexIndex = 127; // last texture map index is reserved for diff
C4M_MaxTexIndex = 255; // last texture map index is reserved for diff
const int C4S_MaxPlayer = 4;