faces/tally: add yugioh life point presets

Add common Yu-Gi-Oh card game life point preset values
for the tally face, opt in by defining a preprocessor macro.
This commit is contained in:
Matheus Afonso Martins Moreira 2024-09-08 18:39:55 -03:00
parent 531bcfd285
commit 6b7ea8bbaa

View file

@ -41,6 +41,11 @@ static const int16_t _tally_default[] = {
40, 40,
#endif /* TALLY_FACE_PRESETS_MTG */ #endif /* TALLY_FACE_PRESETS_MTG */
#ifdef TALLY_FACE_PRESETS_YUGIOH
4000,
8000,
#endif /* TALLY_FACE_PRESETS_YUGIOH */
}; };
static const uint8_t _tally_default_size = sizeof(_tally_default) / sizeof(int16_t); static const uint8_t _tally_default_size = sizeof(_tally_default) / sizeof(int16_t);