From 48a37230d4ded36084eccda03b2e2ea7da21fa50 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sat, 20 May 2023 17:28:20 -0600 Subject: [PATCH] Fix typo in log message --- src/SFML/Window/Unix/GlxContext.cpp | 2 +- src/SFML/Window/Win32/WglContext.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SFML/Window/Unix/GlxContext.cpp b/src/SFML/Window/Unix/GlxContext.cpp index 6e91d101b..281e4bc0e 100644 --- a/src/SFML/Window/Unix/GlxContext.cpp +++ b/src/SFML/Window/Unix/GlxContext.cpp @@ -702,7 +702,7 @@ void GlxContext::createContext(GlxContext* shared) if ((m_settings.attributeFlags & ContextSettings::Core) || (m_settings.attributeFlags & ContextSettings::Debug)) err() << "Selecting a profile during context creation is not supported," - << "disabling comptibility and debug" << std::endl; + << "disabling compatibility and debug" << std::endl; m_settings.attributeFlags = ContextSettings::Default; } diff --git a/src/SFML/Window/Win32/WglContext.cpp b/src/SFML/Window/Win32/WglContext.cpp index 6f5a28374..a160d36a9 100644 --- a/src/SFML/Window/Win32/WglContext.cpp +++ b/src/SFML/Window/Win32/WglContext.cpp @@ -688,7 +688,7 @@ void WglContext::createContext(WglContext* shared) if ((m_settings.attributeFlags & ContextSettings::Core) || (m_settings.attributeFlags & ContextSettings::Debug)) err() << "Selecting a profile during context creation is not supported," - << "disabling comptibility and debug" << std::endl; + << "disabling compatibility and debug" << std::endl; m_settings.attributeFlags = ContextSettings::Default; }