From bf8d824b70ca837f39e9983adfa04c243876f7ae Mon Sep 17 00:00:00 2001 From: Clownacy Date: Fri, 24 Apr 2020 13:02:51 +0100 Subject: [PATCH] Fix typo --- src/Backends/GLFW3/Misc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Backends/GLFW3/Misc.cpp b/src/Backends/GLFW3/Misc.cpp index ec50406d..3a46f6f0 100644 --- a/src/Backends/GLFW3/Misc.cpp +++ b/src/Backends/GLFW3/Misc.cpp @@ -196,7 +196,7 @@ void Backend_HideMouse(void) void Backend_SetWindowIcon(const unsigned char *rgb_pixels, unsigned int width, unsigned int height) { - // Convert to RGBA, since that's the only think GLFW3 accepts + // Convert to RGBA, since that's the only thing GLFW3 accepts unsigned char *rgba_pixels = (unsigned char*)malloc(width * height * 4); const unsigned char *rgb_pointer = rgb_pixels; @@ -224,7 +224,7 @@ void Backend_SetWindowIcon(const unsigned char *rgb_pixels, unsigned int width, void Backend_SetCursor(const unsigned char *rgb_pixels, unsigned int width, unsigned int height) { - // Convert to RGBA, since that's the only think GLFW3 accepts + // Convert to RGBA, since that's the only thing GLFW3 accepts unsigned char *rgba_pixels = (unsigned char*)malloc(width * height * 4); const unsigned char *rgb_pointer = rgb_pixels;