From b0005129c774bb71acced9ada688cc4d080b0926 Mon Sep 17 00:00:00 2001 From: Vortex <73261680+Vortex2Oblivion@users.noreply.github.com> Date: Sat, 8 Aug 2026 14:57:40 +0000 Subject: [PATCH] fix typo in fix_win32_compatibility.h (#6043) * fix typo in fix_win32_compatibility.h * fix another typo in fix_win32_compatibility.h * fix yet another typo in fix_win32_compatibility.h --- src/external/fix_win32_compatibility.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/external/fix_win32_compatibility.h b/src/external/fix_win32_compatibility.h index e10376696..f0dafa4e7 100644 --- a/src/external/fix_win32_compatibility.h +++ b/src/external/fix_win32_compatibility.h @@ -2,7 +2,7 @@ * * fix_win32_compatibility.h Utility to help include windows.h with raylib projects * -* Useage: #include "fix_win32_compatibility.h" any library that uses windows.h +* Usage: #include "fix_win32_compatibility.h" any library that uses windows.h * order is critical, this must be done before raylib * * LICENSE: MIT @@ -32,7 +32,7 @@ #pragma once // move the windows functions to new names -// note that you can't call these functions or structures from your code, but you should not neeed to +// note that you can't call these functions or structures from your code, but you should not need to #define CloseWindow CloseWindowWin32 #define Rectangle RectangleWin32 #define ShowCursor ShowCursorWin32 @@ -47,7 +47,7 @@ #define WIN32_LEAN_AND_MEAN #include -// remove all our redfintions so that raylib can define them properly +// remove all our redefinitions so that raylib can define them properly #undef CloseWindow #undef Rectangle #undef ShowCursor