From 090c790e50a0e3607197538882d35628329be297 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sun, 7 Feb 2021 20:47:40 +0100 Subject: [PATCH] Review formating for latest PR --- src/core.c | 18 ++++++++---------- src/raylib.h | 4 ++-- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/src/core.c b/src/core.c index 8efb900c..1696c41e 100644 --- a/src/core.c +++ b/src/core.c @@ -1528,7 +1528,7 @@ Vector2 GetMonitorPosition(int monitor) return (Vector2){ 0, 0 }; } -// Get selected monitor width +// Get selected monitor width (max available by monitor) int GetMonitorWidth(int monitor) { #if defined(PLATFORM_DESKTOP) @@ -1540,17 +1540,16 @@ int GetMonitorWidth(int monitor) int count = 0; const GLFWvidmode *modes = glfwGetVideoModes(monitors[monitor], &count); - if(count > 0) - { - return modes[count - 1].width; - } else TRACELOG(LOG_WARNING, "GLFW: Failed to find video mode for selected monitor"); + // We return the maximum resolution available, the last one in the modes array + if (count > 0) return modes[count - 1].width; + else TRACELOG(LOG_WARNING, "GLFW: Failed to find video mode for selected monitor"); } else TRACELOG(LOG_WARNING, "GLFW: Failed to find selected monitor"); #endif return 0; } -// Get selected monitor width +// Get selected monitor width (max available by monitor) int GetMonitorHeight(int monitor) { #if defined(PLATFORM_DESKTOP) @@ -1562,10 +1561,9 @@ int GetMonitorHeight(int monitor) int count = 0; const GLFWvidmode *modes = glfwGetVideoModes(monitors[monitor], &count); - if(count > 0) - { - return modes[count - 1].height; - } else TRACELOG(LOG_WARNING, "GLFW: Failed to find video mode for selected monitor"); + // We return the maximum resolution available, the last one in the modes array + if (count > 0) return modes[count - 1].height; + else TRACELOG(LOG_WARNING, "GLFW: Failed to find video mode for selected monitor"); } else TRACELOG(LOG_WARNING, "GLFW: Failed to find selected monitor"); #endif diff --git a/src/raylib.h b/src/raylib.h index 47dfa05f..bbb25cc6 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -921,8 +921,8 @@ RLAPI int GetScreenHeight(void); // Get current RLAPI int GetMonitorCount(void); // Get number of connected monitors RLAPI int GetCurrentMonitor(void); // Get current connected monitor RLAPI Vector2 GetMonitorPosition(int monitor); // Get specified monitor position -RLAPI int GetMonitorWidth(int monitor); // Get specified monitor width -RLAPI int GetMonitorHeight(int monitor); // Get specified monitor height +RLAPI int GetMonitorWidth(int monitor); // Get specified monitor width (max available by monitor) +RLAPI int GetMonitorHeight(int monitor); // Get specified monitor height (max available by monitor) RLAPI int GetMonitorPhysicalWidth(int monitor); // Get specified monitor physical width in millimetres RLAPI int GetMonitorPhysicalHeight(int monitor); // Get specified monitor physical height in millimetres RLAPI int GetMonitorRefreshRate(int monitor); // Get specified monitor refresh rate