Convert nerdfont icon to unicode

This commit is contained in:
Nathan Anderson 2024-07-08 12:43:35 -06:00
parent 75f9e55f94
commit a6a98c17ef

View File

@ -74,10 +74,10 @@ pub fn bufPrintCard(card: Card, buffer: []u8, options: bufPrintCardOptions) []co
pub fn suitToIcon(s: Suit) []const u8 { pub fn suitToIcon(s: Suit) []const u8 {
return switch (s) { return switch (s) {
.Spades => "󰣑", .Spades => "",
.Hearts => "", .Hearts => "",
.Clubs => "󰣎", .Clubs => "",
.Diamonds => "󰣏", .Diamonds => "",
}; };
} }