summaryrefslogtreecommitdiffstats
path: root/src/core/Collision.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Collision.h')
-rw-r--r--src/core/Collision.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/core/Collision.h b/src/core/Collision.h
index bdf51eb8..fc3c1647 100644
--- a/src/core/Collision.h
+++ b/src/core/Collision.h
@@ -89,11 +89,15 @@ struct CColModel
{
CColSphere boundingSphere;
CColBox boundingBox;
- short numSpheres;
- short numLines;
- short numBoxes;
- short numTriangles;
- int level;
+ int16 numSpheres;
+ int16 numLines;
+ int16 numBoxes;
+ int16 numTriangles;
+#ifndef MIAMI
+ int32 level;
+#else
+ uint8 level; // colstore slot but probably same name
+#endif
bool ownsCollisionVolumes;
CColSphere *spheres;
CColLine *lines;