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
glfwPollEvents(); // Register keyboard/mouse events (callbacks)... and window events!
#endif
#endif //defined(PLATFORM_DESKTOP)
#endif // PLATFORM_DESKTOP
// Gamepad support using emscripten API
// 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);
}
CORE.Window.prevBO = bo;
#endif // defined(PLATFORM_DRM)
#endif // defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI) || defined(PLATFORM_DRM) || defined(PLATFORM_UWP)
#endif // PLATFORM_DRM
#endif // PLATFORM_ANDROID || PLATFORM_RPI || PLATFORM_DRM || PLATFORM_UWP
}
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_WEB)