Skip to content

Commit eb4cd73

Browse files
committed
Put stats on separate lines to ease visual parsing
1 parent a337bd5 commit eb4cd73

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/src/main/java/com/limelight/Game.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1142,12 +1142,11 @@ protected void onStop() {
11421142
+ ' '
11431143
+ decimalFormat.format(decoderRenderer.getAverageEndToEndLatency())
11441144
+ millisecondSuffix
1145-
+ " ("
1146-
+ getResources().getString(R.string.conn_client_latency_hw)
1145+
+ '\n'
1146+
+ getResources().getString(R.string.conn_hardware_latency)
11471147
+ ' '
11481148
+ decimalFormat.format(decoderRenderer.getAverageDecoderLatency())
1149-
+ millisecondSuffix
1150-
+ ")";
1149+
+ millisecondSuffix;
11511150

11521151
// Add the video codec to the post-stream toast
11531152
message += " [";

0 commit comments

Comments
 (0)