> Are there any hardcoded limits to the number of elements you can have in an > ENUM? (using VC++6) > > I have over 150 of them... And doing a switch statement on a value from them > seems to crash HL...
enums should be limited to the max value of int (over 2 billion), so 150 enum values shouldn't be a problem. Jeffrey "botman" Broome _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlcoders

