From 3d7d174c70b2d00fd879ade64c5085d4ff34d4aa Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 20 May 2019 16:40:30 +0200 Subject: Review and recompile ALL examples --- examples/src/core/core_3d_picking.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/src/core/core_3d_picking.c') diff --git a/examples/src/core/core_3d_picking.c b/examples/src/core/core_3d_picking.c index 1c63e2a..1e60c03 100644 --- a/examples/src/core/core_3d_picking.c +++ b/examples/src/core/core_3d_picking.c @@ -11,12 +11,12 @@ #include "raylib.h" -int main() +int main(void) { // Initialization //-------------------------------------------------------------------------------------- - int screenWidth = 800; - int screenHeight = 450; + const int screenWidth = 800; + const int screenHeight = 450; InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d picking"); -- cgit v1.2.3