Skip to content

Commit

Permalink
Put stats on separate lines to ease visual parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
kentyman23 committed Jan 21, 2024
1 parent a337bd5 commit eb4cd73
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/src/main/java/com/limelight/Game.java
Original file line number Diff line number Diff line change
Expand Up @@ -1142,12 +1142,11 @@ protected void onStop() {
+ ' '
+ decimalFormat.format(decoderRenderer.getAverageEndToEndLatency())
+ millisecondSuffix
+ " ("
+ getResources().getString(R.string.conn_client_latency_hw)
+ '\n'
+ getResources().getString(R.string.conn_hardware_latency)
+ ' '
+ decimalFormat.format(decoderRenderer.getAverageDecoderLatency())
+ millisecondSuffix
+ ")";
+ millisecondSuffix;

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

0 comments on commit eb4cd73

Please sign in to comment.