shithub: cstory

Download patch

ref: bf8d824b70ca837f39e9983adfa04c243876f7ae
parent: 8945ca8275014adfee17725f6abc49816d3c1b35
author: Clownacy <Clownacy@users.noreply.github.com>
date: Fri Apr 24 09:02:51 EDT 2020

Fix typo

--- a/src/Backends/GLFW3/Misc.cpp
+++ b/src/Backends/GLFW3/Misc.cpp
@@ -196,7 +196,7 @@
 
 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_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;