From 5586abf9618122399d8af5a4e7b33dc02fe5071c Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 13 Jun 2019 22:31:52 +0800 Subject: fix xp compatibility mode --- core/src/demo/xmake.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/demo/xmake.lua b/core/src/demo/xmake.lua index bd8e1d230..4aceb3340 100644 --- a/core/src/demo/xmake.lua +++ b/core/src/demo/xmake.lua @@ -41,9 +41,9 @@ target("demo") -- enable xp compatibility mode if is_plat("windows") then if is_arch("x86") then - add_ldflags("/subsystem:console,\"5.01\"") + add_ldflags("/subsystem:console,5.01") else - add_ldflags("/subsystem:console,\"5.02\"") + add_ldflags("/subsystem:console,5.02") end end -- cgit v1.3.1