Revert example

This commit is contained in:
Michael 2023-10-13 20:14:07 -04:00
parent d833ff02d7
commit e071e7f0aa

View File

@ -30,7 +30,7 @@ int main(void)
InitWindow(screenWidth, screenHeight, "raylib [core] example - gamepad information");
// SetTargetFPS(60); // Set our game to run at 60 frames-per-second
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
@ -62,8 +62,6 @@ int main(void)
}
}
DrawFPS(400, 100);
EndDrawing();
}