From 79395fa47d35e1de5332e6b4a342249c46ac6fb9 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Sat, 8 Aug 2026 10:49:42 -0400 Subject: [PATCH] ci: Update to VS2026. GitHub Actions doesn't provide 2022 by default anymore :( --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 296507d6..88135cc7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -141,7 +141,7 @@ jobs: mkdir $env:SRC_DIR_PATH/build cd $env:SRC_DIR_PATH/build $env:LDFLAGS = "/LIBPATH:C:\SDL2-$env:SDL_VERSION\lib\x86 " - cmake -G "Visual Studio 17 2022" -A Win32 ` + cmake -G "Visual Studio 18 2026" -A Win32 ` -DSDL2_INCLUDE_DIRS="C:\SDL2-$env:SDL_VERSION\include" ` -DSDL2_LIBRARIES="SDL2;SDL2main" ..