From 579681a3727b46fbac8b5207a6b8d80a8beeb6f5 Mon Sep 17 00:00:00 2001
From: foobit <[EMAIL REDACTED]>
Date: Thu, 30 Nov 2023 18:44:20 -0500
Subject: [PATCH] fixed SDL_SCANCODE_LEFT array position in scancodes_windows.h
---
src/events/scancodes_windows.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/events/scancodes_windows.h b/src/events/scancodes_windows.h
index 697d2f28ff25..a41d69b2190c 100644
--- a/src/events/scancodes_windows.h
+++ b/src/events/scancodes_windows.h
@@ -228,8 +228,8 @@ static const SDL_Scancode windows_scancode_table[] = {
/*0xe047*/ SDL_SCANCODE_HOME,
/*0xe048*/ SDL_SCANCODE_UP,
/*0xe049*/ SDL_SCANCODE_PAGEUP,
- /*0xe04a*/ SDL_SCANCODE_LEFT,
- /*0xe04b*/ SDL_SCANCODE_UNKNOWN,
+ /*0xe04a*/ SDL_SCANCODE_UNKNOWN,
+ /*0xe04b*/ SDL_SCANCODE_LEFT,
/*0xe04c*/ SDL_SCANCODE_UNKNOWN,
/*0xe04d*/ SDL_SCANCODE_RIGHT,
/*0xe04e*/ SDL_SCANCODE_UNKNOWN,