mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 11:46:27 +00:00
GCMemcard: Move Icon and Banner constants to the GCMemcard header.
This commit is contained in:
parent
58f21830bd
commit
2f119bd206
2 changed files with 20 additions and 13 deletions
|
@ -137,6 +137,17 @@ constexpr u16 MBIT_SIZE_MEMORY_CARD_507 = 0x20;
|
|||
constexpr u16 MBIT_SIZE_MEMORY_CARD_1019 = 0x40;
|
||||
constexpr u16 MBIT_SIZE_MEMORY_CARD_2043 = 0x80;
|
||||
|
||||
// width and height of a save file's banner in pixels
|
||||
constexpr u32 MEMORY_CARD_BANNER_WIDTH = 96;
|
||||
constexpr u32 MEMORY_CARD_BANNER_HEIGHT = 32;
|
||||
|
||||
// width and height of a save file's icon in pixels
|
||||
constexpr u32 MEMORY_CARD_ICON_WIDTH = 32;
|
||||
constexpr u32 MEMORY_CARD_ICON_HEIGHT = 32;
|
||||
|
||||
// maximum number of frames a save file's icon animation can have
|
||||
constexpr u32 MEMORY_CARD_ICON_ANIMATION_MAX_FRAMES = 8;
|
||||
|
||||
class MemoryCardBase
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue