Alignement

This commit is contained in:
2026-06-26 18:00:40 +01:00
parent 422e8fcdc2
commit 988124ef60
+2 -2
View File
@@ -145,8 +145,8 @@ func (r *Replayer) renderToTerminal(ctx context.Context) {
fmt.Fprint(&s, "Flags {\n")
fmt.Fprintf(&s, " OG_TURBO (Has Turbo): %t\n", og.Flags&bngsdk.OG_TURBO != 0)
fmt.Fprintf(&s, " OG_KM (Is Metric): %t\n", og.Flags&bngsdk.OG_KM != 0)
fmt.Fprintf(&s, " OG_BAR (Pressure): %t\n", og.Flags&bngsdk.OG_BAR != 0)
fmt.Fprintf(&s, " OG_KM (Is Metric): %t\n", og.Flags&bngsdk.OG_KM != 0)
fmt.Fprintf(&s, " OG_BAR (Pressure): %t\n", og.Flags&bngsdk.OG_BAR != 0)
fmt.Fprint(&s, "}")
fmt.Fprint(os.Stdout, s.String())