From db5621bb41044e9b5876563ef126211e279f6a5e Mon Sep 17 00:00:00 2001 From: Sean Pringle Date: Wed, 2 Sep 2020 13:12:22 +1000 Subject: [PATCH] remove orphan variables --- examples/shaders/shaders_rlgl_mesh_instanced.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/shaders/shaders_rlgl_mesh_instanced.c b/examples/shaders/shaders_rlgl_mesh_instanced.c index 23053f9c4..6ef421f2e 100644 --- a/examples/shaders/shaders_rlgl_mesh_instanced.c +++ b/examples/shaders/shaders_rlgl_mesh_instanced.c @@ -32,12 +32,6 @@ int main(void) const int screenWidth = 1024; const int screenHeight = 768; - const float sunRadius = 4.0f; - const float earthRadius = 0.6f; - const float earthOrbitRadius = 8.0f; - const float moonRadius = 0.16f; - const float moonOrbitRadius = 1.5f; - SetConfigFlags(FLAG_MSAA_4X_HINT); // Enable Multi Sampling Anti Aliasing 4x (if available) InitWindow(screenWidth, screenHeight, "raylib [shaders] example - rlgl module usage for instanced meshes");