From 9a3c5dac0abf3e343fbe9642608012b2936acdd6 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 24 Nov 2013 21:52:33 -0500 Subject: [PATCH] Suppress connection failure warnings when closing gracefully --- src/com/limelight/Game.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/limelight/Game.java b/src/com/limelight/Game.java index 4249e6ab..553588b6 100644 --- a/src/com/limelight/Game.java +++ b/src/com/limelight/Game.java @@ -97,6 +97,7 @@ public class Game extends Activity implements OnGenericMotionListener, OnTouchLi @Override public void onPause() { + displayedFailureDialog = true; conn.stop(); finish(); super.onPause();