Skip to content

Commit

Permalink
Set constants as uint16
Browse files Browse the repository at this point in the history
  • Loading branch information
bodgit committed Dec 30, 2022
1 parent b12cf79 commit 7ba4b94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions memcard.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

// Supported memory card sizes.
const (
MemoryCard59 = 4 << iota
MemoryCard59 uint16 = 4 << iota
MemoryCard123
MemoryCard251
MemoryCard507
Expand All @@ -23,7 +23,7 @@ const (

// Supported memory card encodings.
const (
EncodingANSI = iota
EncodingANSI uint16 = iota
EncodingSJIS
)

Expand Down

0 comments on commit 7ba4b94

Please sign in to comment.