From 3703430f57a8c06ced45e314f6f71e4e98b046c8 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 17 Jan 2019 16:29:36 +0100 Subject: [PATCH] Renamed ShowWindow() to UnhideWindow() -WIP- Function provisional renaming... that's not the end of this issue... --- src/core.c | 2 +- src/raylib.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core.c b/src/core.c index bfb283eb2..885f81677 100644 --- a/src/core.c +++ b/src/core.c @@ -836,7 +836,7 @@ void SetWindowSize(int width, int height) } // Show the window -__stdcall void ShowWindow(void) +void UnhideWindow(void) { #if defined(PLATFORM_DESKTOP) glfwShowWindow(window); diff --git a/src/raylib.h b/src/raylib.h index 87c52f5c5..f56500b7a 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -840,7 +840,7 @@ RLAPI bool IsWindowReady(void); // Check if wi RLAPI bool IsWindowMinimized(void); // Check if window has been minimized (or lost focus) RLAPI bool IsWindowHidden(void); // Check if window is currently hidden RLAPI void ToggleFullscreen(void); // Toggle fullscreen mode (only PLATFORM_DESKTOP) -RLAPI __stdcall void ShowWindow(void); // Show the window +RLAPI void UnhideWindow(void); // Show the window RLAPI void HideWindow(void); // Hide the window RLAPI void SetWindowIcon(Image image); // Set icon for window (only PLATFORM_DESKTOP) RLAPI void SetWindowTitle(const char *title); // Set title for window (only PLATFORM_DESKTOP)