From bbdf9f48806acba5cac2480c0f60f1840d322ece Mon Sep 17 00:00:00 2001 From: raysan5 Date: Mon, 2 Apr 2018 14:49:01 +0200 Subject: Review InitWindow() to avoid void pointer Reviewed for PLATFORM_ANDROID and PLATFORM_UWP --- src/raylib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/raylib.h') diff --git a/src/raylib.h b/src/raylib.h index f40124e9..acca46bd 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -699,7 +699,7 @@ extern "C" { // Prevents name mangling of functions //------------------------------------------------------------------------------------ // Window-related functions -RLAPI void InitWindow(int width, int height, void *data); // Initialize window and OpenGL context +RLAPI void InitWindow(int width, int height, const char *title); // Initialize window and OpenGL context RLAPI void CloseWindow(void); // Close window and unload OpenGL context RLAPI bool IsWindowReady(void); // Check if window has been initialized successfully RLAPI bool WindowShouldClose(void); // Check if KEY_ESCAPE pressed or Close icon pressed -- cgit v1.2.3