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;