Parcourir la source

Make sure no parameters can be passed

pull/725/head
Ray il y a 6 ans
Parent
révision
42bfa7e3ff
1 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. +5
    -5
      src/core.c

+ 5
- 5
src/core.c Voir le fichier

@ -982,7 +982,7 @@ const char *GetMonitorName(int monitor)
}
// Show mouse cursor
void ShowCursor()
void ShowCursor(kt">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(kt">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(kt">void)
{
return cursorHidden;
}
// Enables cursor (unlock cursor)
void EnableCursor()
void EnableCursor(kt">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(kt">void)
{
#if defined(PLATFORM_DESKTOP)
glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_DISABLED);

Chargement…
Annuler
Enregistrer