add missing corner

This commit is contained in:
Julia Ryan 2025-09-16 11:05:41 -07:00
parent d00a7a6fec
commit 49134f0e44
No known key found for this signature in database

View file

@ -222,7 +222,7 @@ impl PlayerIdentifier {
pub const fn color(&self) -> &str {
match self {
PlayerIdentifier::P1 => "\x1b[38;2;0;0;255m",
PlayerIdentifier::P1 => "\x1b[38;2;0;140;247m",
PlayerIdentifier::P2 => "\x1b[38;2;255;0;0m",
}
}
@ -470,6 +470,7 @@ impl Display for GameState {
)?;
write!(f, "──")?;
}
write!(f, "")?;
Ok(())
}
}