Display an error if the PC is running a GFE version less than 2.0.1.

This commit is contained in:
Cameron Gutman 2014-05-06 23:40:09 -04:00
parent eace3a0bf0
commit dfc0d518f8

View File

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