diff options
| author | Ray <raysan5@gmail.com> | 2019-01-17 16:29:36 +0100 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2019-01-17 16:29:36 +0100 |
| commit | 3703430f57a8c06ced45e314f6f71e4e98b046c8 (patch) | |
| tree | 7b547b1b2e0675b99677de1c39f9447a840874a3 /src | |
| parent | a43f87e3915d46cfa6bb386302df4b729728d595 (diff) | |
| download | raylib-3703430f57a8c06ced45e314f6f71e4e98b046c8.tar.gz raylib-3703430f57a8c06ced45e314f6f71e4e98b046c8.zip | |
Renamed ShowWindow() to UnhideWindow() -WIP-
Function provisional renaming... that's not the end of this issue...
Diffstat (limited to 'src')
| -rw-r--r-- | src/core.c | 2 | ||||
| -rw-r--r-- | src/raylib.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 87c52f5c..f56500b7 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) |
