summaryrefslogtreecommitdiffhomepage
path: root/src/rcore.c
diff options
context:
space:
mode:
authorRay <[email protected]>2022-05-05 20:39:14 +0200
committerRay <[email protected]>2022-05-05 20:39:14 +0200
commited2ab55034078da1c09073a5cb1cd9de35d3afe8 (patch)
treecacf926a72e6767d255f3856b01931dc9acaf5e9 /src/rcore.c
parent4eb3d8857f1a8377f2cfa6e804183512cde5973e (diff)
downloadraylib-ed2ab55034078da1c09073a5cb1cd9de35d3afe8.tar.gz
raylib-ed2ab55034078da1c09073a5cb1cd9de35d3afe8.zip
Remove line ending spaces
Diffstat (limited to 'src/rcore.c')
-rw-r--r--src/rcore.c6
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);