I think I've seen this somewhere but I couldn't find it.
PHP Code:
enum _: ZonesDataStruct
{
Float: __fZoneMin[ 3 ],
Float: __fZoneMax[ 3 ],
__szZoneName[ 32 ]
}
// ...
new aData[ ZonesDataStruct ]
// ...
aData[ __fZoneMin ][ i ] = str_to_float( szTempCoords[ i ] ) // tag mismatch
aData[ __fZoneMax ][ i ] = str_to_float( szTempCoords[ i + 3 ] ) // tag mismatch
What do?