Actually use the commonargs version for [6.0.0+] with web.

This commit is contained in:
yellows8 2019-05-17 21:35:33 -04:00
parent 977bb9d7e8
commit cf8bb1e045
No known key found for this signature in database
GPG Key ID: 0AF90DA3F1E60E43

View File

@ -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;