From 0bb6303cf858f97029b279baf41ced9b39304fea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?No=C3=A9=20Lopez?= Date: Fri, 6 Jan 2023 17:05:41 +0100 Subject: [PATCH] Fix typo in error message --- src/SFML/Window/Unix/WindowImplX11.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SFML/Window/Unix/WindowImplX11.cpp b/src/SFML/Window/Unix/WindowImplX11.cpp index 219c3f25c..472e16e18 100644 --- a/src/SFML/Window/Unix/WindowImplX11.cpp +++ b/src/SFML/Window/Unix/WindowImplX11.cpp @@ -2212,7 +2212,7 @@ Vector2i WindowImplX11::getPrimaryMonitorPosition() XRRScreenResources* res = XRRGetScreenResources(m_display, rootWindow); if (!res) { - err() << "Failed to get the current screen resources for.primary monitor position" << std::endl; + err() << "Failed to get the current screen resources for primary monitor position" << std::endl; return monitorPosition; } @@ -2233,7 +2233,7 @@ Vector2i WindowImplX11::getPrimaryMonitorPosition() if (outputInfo) XRRFreeOutputInfo(outputInfo); - err() << "Failed to get output info for.primary monitor position" << std::endl; + err() << "Failed to get output info for primary monitor position" << std::endl; return monitorPosition; } @@ -2243,7 +2243,7 @@ Vector2i WindowImplX11::getPrimaryMonitorPosition() { XRRFreeScreenResources(res); XRRFreeOutputInfo(outputInfo); - err() << "Failed to get crtc info for.primary monitor position" << std::endl; + err() << "Failed to get crtc info for primary monitor position" << std::endl; return monitorPosition; }