change bools to ints because windows compiler incorrectly says C bools are 1 byte when they should be 4

This commit is contained in:
electronstudio 2019-07-03 10:21:56 +01:00
parent 9be6e97073
commit ff8f9f71b5
6 changed files with 1619 additions and 1623 deletions

View file

@ -316,6 +316,7 @@ typedef struct Ray {
} Ray;
// Raycast hit information
typedef struct RayHitInfo {
bool hit; // Did the ray hit something?
float distance; // Distance to nearest hit