From cf8bb1e04510f38bba329a4e906e8e0375f0544e Mon Sep 17 00:00:00 2001 From: yellows8 Date: Fri, 17 May 2019 21:35:33 -0400 Subject: [PATCH] Actually use the commonargs version for [6.0.0+] with web. --- nx/source/applets/web.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nx/source/applets/web.c b/nx/source/applets/web.c index 12fd8c32..ee5bdc77 100644 --- a/nx/source/applets/web.c +++ b/nx/source/applets/web.c @@ -79,7 +79,9 @@ static void _webArgInitialize(WebCommonConfig* config, AppletId appletid, WebShi config->appletid = appletid; u32 hosver = hosversionGet(); - if (hosver >= MAKEHOSVERSION(5,0,0)) + if (hosver >= MAKEHOSVERSION(6,0,0)) + config->version = 0x60000; + else if (hosver >= MAKEHOSVERSION(5,0,0)) config->version = 0x50000; else if (hosver >= MAKEHOSVERSION(3,0,0)) config->version = 0x30000;