aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core.c b/src/core.c
index 753d437f..2777ae02 100644
--- a/src/core.c
+++ b/src/core.c
@@ -982,7 +982,7 @@ const char *GetMonitorName(int monitor)
}
// Show mouse cursor
-void ShowCursor()
+void ShowCursor(void)
{
#if defined(PLATFORM_DESKTOP)
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
@@ -991,7 +991,7 @@ void ShowCursor()
}
// Hides mouse cursor
-void HideCursor()
+void HideCursor(void)
{
#if defined(PLATFORM_DESKTOP)
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_HIDDEN);
@@ -1000,13 +1000,13 @@ void HideCursor()
}
// Check if cursor is not visible
-bool IsCursorHidden()
+bool IsCursorHidden(void)
{
return cursorHidden;
}
// Enables cursor (unlock cursor)
-void EnableCursor()
+void EnableCursor(void)
{
#if defined(PLATFORM_DESKTOP)
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL);
@@ -1018,7 +1018,7 @@ void EnableCursor()
}
// Disables cursor (lock cursor)
-void DisableCursor()
+void DisableCursor(void)
{
#if defined(PLATFORM_DESKTOP)
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);