diff options
| author | Ray <[email protected]> | 2022-05-05 20:39:14 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-05-05 20:39:14 +0200 |
| commit | ed2ab55034078da1c09073a5cb1cd9de35d3afe8 (patch) | |
| tree | cacf926a72e6767d255f3856b01931dc9acaf5e9 /src/rcore.c | |
| parent | 4eb3d8857f1a8377f2cfa6e804183512cde5973e (diff) | |
| download | raylib-ed2ab55034078da1c09073a5cb1cd9de35d3afe8.tar.gz raylib-ed2ab55034078da1c09073a5cb1cd9de35d3afe8.zip | |
Remove line ending spaces
Diffstat (limited to 'src/rcore.c')
| -rw-r--r-- | src/rcore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rcore.c b/src/rcore.c index e31e2297..e2cbf6ca 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -754,7 +754,7 @@ void InitWindow(int width, int height, const char *title) #endif if ((title != NULL) && (title[0] != 0)) CORE.Window.title = title; - + // Initialize global input state memset(&CORE.Input, 0, sizeof(CORE.Input)); CORE.Input.Keyboard.exitKey = KEY_ESCAPE; @@ -1184,7 +1184,7 @@ void ToggleFullscreen(void) int monitorCount = 0; int monitorIndex = GetCurrentMonitor(); - GLFWmonitor **monitors = glfwGetMonitors(&monitorCount); + GLFWmonitor **monitors = glfwGetMonitors(&monitorCount); // Use current monitor, so we correctly get the display the window is on GLFWmonitor *monitor = (monitorIndex < monitorCount)? monitors[monitorIndex] : NULL; @@ -4875,7 +4875,7 @@ void SwapScreenBuffer(void) result = drmModeRmFB(CORE.Window.fd, CORE.Window.prevFB); if (result != 0) TRACELOG(LOG_ERROR, "DISPLAY: drmModeRmFB() failed with result: %d", result); } - + CORE.Window.prevFB = fb; if (CORE.Window.prevBO) gbm_surface_release_buffer(CORE.Window.gbmSurface, CORE.Window.prevBO); |
