From 3db01ccc52c45a37dacd8dfb0f385336f9f45de6 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Mon, 16 Dec 2024 11:10:02 +0000
Subject: [PATCH] cmake/CommonFindSDL2.cmake: fix typo x86_46 --> x86_64.
(hand-picked from commit 46c2f4dbdcd38fa0caf47cd7e35e2df3f0ebb186)
---
cmake/CommonFindSDL2.cmake | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/cmake/CommonFindSDL2.cmake b/cmake/CommonFindSDL2.cmake
index 0a41bc6c..59939dc9 100644
--- a/cmake/CommonFindSDL2.cmake
+++ b/cmake/CommonFindSDL2.cmake
@@ -16,7 +16,7 @@ if(MINGW)
list(APPEND _inc_suffixes "i686-w64-mingw32/include")
endif()
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
- list(APPEND _lib_suffixes "x86_46-w64-mingw32/lib")
- list(APPEND _inc_suffixes "x86_46-w64-mingw32/include")
+ list(APPEND _lib_suffixes "x86_64-w64-mingw32/lib")
+ list(APPEND _inc_suffixes "x86_64-w64-mingw32/include")
endif()
-endif()
\ No newline at end of file
+endif()