diff --git a/src/deck.zig b/src/deck.zig index 1b38deb..3037971 100644 --- a/src/deck.zig +++ b/src/deck.zig @@ -74,10 +74,10 @@ pub fn bufPrintCard(card: Card, buffer: []u8, options: bufPrintCardOptions) []co pub fn suitToIcon(s: Suit) []const u8 { return switch (s) { - .Spades => "󰣑", - .Hearts => "", - .Clubs => "󰣎", - .Diamonds => "󰣏", + .Spades => "♠", + .Hearts => "❤", + .Clubs => "♣", + .Diamonds => "♦", }; }