Remove trailing spaces

This commit is contained in:
Ray 2021-04-18 23:50:32 +02:00
parent 63432724c7
commit 581bd0eb02
5 changed files with 54 additions and 54 deletions

View file

@ -4745,7 +4745,7 @@ static void PollInputEvents(void)
#else #else
glfwPollEvents(); // Register keyboard/mouse events (callbacks)... and window events! glfwPollEvents(); // Register keyboard/mouse events (callbacks)... and window events!
#endif #endif
#endif //defined(PLATFORM_DESKTOP) #endif // PLATFORM_DESKTOP
// Gamepad support using emscripten API // Gamepad support using emscripten API
// NOTE: GLFW3 joystick functionality not available in web // NOTE: GLFW3 joystick functionality not available in web
@ -4908,8 +4908,8 @@ static void SwapBuffers(void)
gbm_surface_release_buffer(CORE.Window.gbmSurface, CORE.Window.prevBO); gbm_surface_release_buffer(CORE.Window.gbmSurface, CORE.Window.prevBO);
} }
CORE.Window.prevBO = bo; CORE.Window.prevBO = bo;
#endif // defined(PLATFORM_DRM) #endif // PLATFORM_DRM
#endif // defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI) || defined(PLATFORM_DRM) || defined(PLATFORM_UWP) #endif // PLATFORM_ANDROID || PLATFORM_RPI || PLATFORM_DRM || PLATFORM_UWP
} }
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB) #if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB)
@ -5653,7 +5653,7 @@ static void RestoreKeyboard(void)
// Reconfigure keyboard to default mode // Reconfigure keyboard to default mode
ioctl(STDIN_FILENO, KDSKBMODE, CORE.Input.Keyboard.defaultMode); ioctl(STDIN_FILENO, KDSKBMODE, CORE.Input.Keyboard.defaultMode);
} }
#endif //SUPPORT_SSH_KEYBOARD_RPI #endif // SUPPORT_SSH_KEYBOARD_RPI
// Initialise user input from evdev(/dev/input/event<N>) this means mouse, keyboard or gamepad devices // Initialise user input from evdev(/dev/input/event<N>) this means mouse, keyboard or gamepad devices
static void InitEvdevInput(void) static void InitEvdevInput(void)