From eca515d3462e7033b0d48b47eab93e31878c1292 Mon Sep 17 00:00:00 2001 From: Eddy Jansson Date: Fri, 30 Jan 2026 13:59:24 +0100 Subject: [PATCH 1/2] trivial: Correct typo in log message. --- src/platforms/rcore_desktop_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platforms/rcore_desktop_win32.c b/src/platforms/rcore_desktop_win32.c index 70ebd8b92..307926348 100644 --- a/src/platforms/rcore_desktop_win32.c +++ b/src/platforms/rcore_desktop_win32.c @@ -1777,7 +1777,7 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lpara { // looks like windows will automatically "unminimize" a window // if a style changes modifies it's size - TRACELOG(LOG_INFO, "WIN32: WINDOW: Style change modifed window size, removing maximized flag"); + TRACELOG(LOG_INFO, "WIN32: WINDOW: Style change modified window size, removing maximized flag"); deferredFlags->clear |= FLAG_WINDOW_MAXIMIZED; } } From 22b2f17660280b60540cc8abbe2bf22b94442482 Mon Sep 17 00:00:00 2001 From: Eddy Jansson Date: Fri, 30 Jan 2026 15:41:19 +0100 Subject: [PATCH 2/2] trivial: Correct typo in rlparser. --- tools/rlparser/rlparser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/rlparser/rlparser.c b/tools/rlparser/rlparser.c index 899ba7db6..f96dcc0bd 100644 --- a/tools/rlparser/rlparser.c +++ b/tools/rlparser/rlparser.c @@ -260,7 +260,7 @@ int main(int argc, char *argv[]) for (int i = 0; i < lineCount; i++) { int j = 0; - while ((lines[i][j] == ' ') || (lines[i][j] == '\t')) j++; // skip spaces and tabs in the begining + while ((lines[i][j] == ' ') || (lines[i][j] == '\t')) j++; // skip spaces and tabs in the beginning // Read define line if (IsTextEqual(lines[i]+j, "#define ", 8)) { @@ -385,7 +385,7 @@ int main(int argc, char *argv[]) char *linePtr = lines[defineLines[i]]; int j = 0; - while ((linePtr[j] == ' ') || (linePtr[j] == '\t')) j++; // Skip spaces and tabs in the begining + while ((linePtr[j] == ' ') || (linePtr[j] == '\t')) j++; // Skip spaces and tabs in the beginning j += 8; // Skip "#define " while ((linePtr[j] == ' ') || (linePtr[j] == '\t')) j++; // Skip spaces and tabs after "#define "