From a2da1616c0dc5f7823d61ff9ec0e75095260cd6d Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 16 Jan 2021 01:26:19 -0500 Subject: [PATCH] meson: set minimum win version to 7 I think setting it at 8 was accidental? This matches the installer, so we should be consistent throughout --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 043d9809e..29d449597 100644 --- a/meson.build +++ b/meson.build @@ -42,7 +42,7 @@ dataroot = datadir / 'aegisub' add_project_arguments('-DP_DATA="@0@"'.format(dataroot), language: 'cpp') if host_machine.system() == 'windows' - add_project_arguments('-DNOMINMAX', '-D_WIN32_WINNT=0x0602', language: 'cpp') + add_project_arguments('-DNOMINMAX', '-D_WIN32_WINNT=0x0601', language: 'cpp') endif # MSVC sets this automatically with -MDd, but it has a different meaning on other platforms