summaryrefslogtreecommitdiffhomepage
path: root/examples/core/core_random_values.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/core/core_random_values.c')
-rw-r--r--examples/core/core_random_values.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/core/core_random_values.c b/examples/core/core_random_values.c
index c2225bca..bec1de27 100644
--- a/examples/core/core_random_values.c
+++ b/examples/core/core_random_values.c
@@ -29,7 +29,7 @@ int main(void)
int randValue = GetRandomValue(-8, 5); // Get a random integer number between -8 and 5 (both included)
- int framesCounter = 0; // Variable used to count frames
+ unsigned int framesCounter = 0; // Variable used to count frames
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------