From f5ded03b9b6514ea80b9dce7408b0b2c7c932381 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 13 Dec 2015 13:25:53 -0800 Subject: [PATCH] Add a line break to avoid "H.264" being split between 2 lines in the toast --- app/src/main/java/com/limelight/Game.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/limelight/Game.java b/app/src/main/java/com/limelight/Game.java index 50a10a1e..fa78d6b2 100644 --- a/app/src/main/java/com/limelight/Game.java +++ b/app/src/main/java/com/limelight/Game.java @@ -212,7 +212,7 @@ public class Game extends Activity implements SurfaceHolder.Callback, // Display a message to the user if H.265 was forced on but we still didn't find a decoder if (prefConfig.videoFormat == PreferenceConfiguration.FORCE_H265_ON && !decoderRenderer.isHevcSupported()) { - Toast.makeText(this, "No H.265 decoder found. Falling back to H.264", Toast.LENGTH_LONG).show(); + Toast.makeText(this, "No H.265 decoder found.\nFalling back to H.264.", Toast.LENGTH_LONG).show(); } StreamConfiguration config = new StreamConfiguration.Builder()