Files
pico-loader/common/CardSaveType.h
Gericom 6d12399ba4 Added support for NAND saving in WarioWare D.I.Y. and Jam with the Band (#6)
Also improved speed of creating save files
2025-12-28 13:19:23 +01:00

18 lines
271 B
C

#pragma once
/// @brief Enum representing the save type.
enum class CardSaveType : u8
{
/// @brief The game has no save.
None = 0,
/// @brief EEPROM save.
Eeprom = 1,
/// @brief Flash save.
Flash = 2,
/// @brief NAND save.
Nand = 3
};