From dfc0d518f86f30e330a5ebf193a9242535361450 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Tue, 6 May 2014 23:40:09 -0400 Subject: [PATCH] Display an error if the PC is running a GFE version less than 2.0.1. --- .../src/com/limelight/nvstream/NvConnection.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/moonlight-common/src/com/limelight/nvstream/NvConnection.java b/moonlight-common/src/com/limelight/nvstream/NvConnection.java index 8598225a..db00627b 100644 --- a/moonlight-common/src/com/limelight/nvstream/NvConnection.java +++ b/moonlight-common/src/com/limelight/nvstream/NvConnection.java @@ -138,6 +138,11 @@ public class NvConnection { { NvHTTP h = new NvHTTP(hostAddr, getMacAddressString(), localDeviceName); + if (h.getAppVersion().startsWith("1.")) { + listener.displayMessage("Limelight now requires GeForce Experience 2.0.1 or later. Please upgrade GFE on your PC and try again."); + return false; + } + if (!h.getPairState()) { listener.displayMessage("Device not paired with computer"); return false;