diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-30 14:40:15 -0600 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-10-30 14:40:15 -0600 |
commit | 8f5f51cee013d5c1b9ad629c00aaf08a4572b332 (patch) | |
tree | e06c8da029aa76dd29e42881cd460581d90e3f94 /src/gyroscope.c | |
parent | 0dd152a45305b54c6881eed1ff7d8d814cb92e59 (diff) |
Fixed gyro with weird pixely thingy
Diffstat (limited to 'src/gyroscope.c')
-rw-r--r-- | src/gyroscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gyroscope.c b/src/gyroscope.c index 7b6ee76..eb34e11 100644 --- a/src/gyroscope.c +++ b/src/gyroscope.c @@ -53,7 +53,7 @@ void drawGyroscope(Game * game, Gyroscope * gyroscope) { // Draw this mother fucker. BeginTextureMode(gyroscope->texture); - ClearBackground(BLACK); + ClearBackground((Color){0x0, 0x0, 0x0, 0x0}); BeginMode3D(gyroscope->camera); // This this fucker!!! |