fix(android): replace forbidden Unicode chars in win_summary and splash (#52, #53)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
funman300
2026-05-27 19:03:11 -07:00
parent a3b9293cd9
commit bd49364553
2 changed files with 15 additions and 15 deletions
+4 -4
View File
@@ -282,7 +282,7 @@ pub const SCORE_NO_UNDO_BONUS: i32 = 25;
/// Time bonus ({m:ss}) +{time_bonus}
/// No-undo bonus +{no_undo_bonus}
/// Mode multiplier ({mode} ×N) ×{multiplier}
/// ─────────────────────────────────
/// -----------------
/// Total {total}
/// ```
///
@@ -1019,11 +1019,11 @@ fn spawn_score_breakdown(
row_index += 1;
}
// 5. Separator — em-dashes spanning the visual width.
// 5. Separator — ASCII dashes spanning the visual width.
spawn_breakdown_row(
card,
"─────────────────",
"─────".to_string(),
"-----------------",
"-----".to_string(),
TEXT_SECONDARY,
anim_speed,
stagger * row_index as f32,