From 378fbedfa4dc93617d2a2e6a23c91cbfb15a69fd Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 21 Jul 2014 22:49:28 -0700 Subject: [PATCH] Remove/change some messages --- .../src/com/limelight/nvstream/NvConnection.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/moonlight-common/src/com/limelight/nvstream/NvConnection.java b/moonlight-common/src/com/limelight/nvstream/NvConnection.java index d8e8e262..b7f72240 100644 --- a/moonlight-common/src/com/limelight/nvstream/NvConnection.java +++ b/moonlight-common/src/com/limelight/nvstream/NvConnection.java @@ -127,7 +127,6 @@ public class NvConnection { listener.displayMessage("Failed to resume existing session"); return false; } else if (h.getCurrentGame() != app.getAppId()) { - listener.displayMessage("Another app was running. Quitting it"); return quitAndLaunch(h, app); } } catch (GfeHttpResponseException e) { @@ -140,8 +139,9 @@ public class NvConnection { return false; } else if (e.getErrorCode() == 525) { - listener.displayMessage("The application is minimized. Trying to quit it"); - return quitAndLaunch(h, app); + listener.displayMessage("The application is minimized. Resume it on the PC manually or " + + "quit the session and start streaming again."); + return false; } else { throw e; }