From 0019b93e8dffe9498bf3db09f52f3ba2c1dc0093 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 19 Jul 2014 21:42:16 -0700 Subject: [PATCH] Stop GFE from changing game settings --- moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java index 3717ea9d..9c543ffd 100644 --- a/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java +++ b/moonlight-common/src/com/limelight/nvstream/http/NvHTTP.java @@ -257,7 +257,7 @@ public class NvHTTP { "/launch?uniqueid=" + uniqueId + "&appid=" + appId + "&mode=" + width + "x" + height + "x" + refreshRate + - "&additionalStates=1&sops=1&rikey="+cryptoProvider.encodeBase64String(inputKey.getEncoded())); + "&additionalStates=1&sops=0&rikey="+cryptoProvider.encodeBase64String(inputKey.getEncoded())); String gameSession = getXmlString(in, "gamesession"); return Integer.parseInt(gameSession); }