summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorruki <[email protected]>2019-06-13 22:31:52 +0800
committerruki <[email protected]>2019-06-13 09:11:13 +0800
commit5586abf9618122399d8af5a4e7b33dc02fe5071c (patch)
tree76b71d79d1598c7fb3eef42a274aeb8dba92d9bb /core/src
parent7b3a898eb8627c2d044197c5f7733606dfc61046 (diff)
fix xp compatibility mode
Diffstat (limited to 'core/src')
-rw-r--r--core/src/demo/xmake.lua4
1 files 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