From 53d8248b8c6b4c4fa2e2e0d94e8cf5c4e1d179bc Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 25 Jul 2023 21:24:58 +0200 Subject: [PATCH] source/Platform/Unix/X11Display.cpp: typofix. --- source/Platform/Unix/X11Display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Platform/Unix/X11Display.cpp b/source/Platform/Unix/X11Display.cpp index 884fb40..e8e5770 100644 --- a/source/Platform/Unix/X11Display.cpp +++ b/source/Platform/Unix/X11Display.cpp @@ -247,7 +247,7 @@ void X11Display::setIcon(unsigned int width, unsigned int height, const uint8_t *ptr++ = width; *ptr++ = height; - // TODO: Conversion between differnet formats should be defined as functions in Graphics/PixelFormat.h + // TODO: Conversion between different formats should be defined as functions in Graphics/PixelFormat.h for (std::size_t i = 0; i < width * height; i++) { *ptr++ = (pixels[i * 4 + 2] << 0) | (pixels[i * 4 + 1] << 8)