mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 11:33:06 +00:00
Display an error if the PC is running a GFE version less than 2.0.1.
This commit is contained in:
parent
eace3a0bf0
commit
dfc0d518f8
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user