change bools to ints because windows compiler incorrectly says C bools are 1 byte when they should be 4
This commit is contained in:
parent
9be6e97073
commit
ff8f9f71b5
6 changed files with 1619 additions and 1623 deletions
|
@ -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
|
||||
|
|
Reference in a new issue