Various changes

- Add "Pikachu Bed" and "Tentacool Doll" decoration unlock options for
  gen 2
- bugfix for unsafe behaviour
- attempt to make the RESET button work for cartridge switching. It
  failed though. (not reliable). Therefore I just added a warning
  message instead.
- Work on new ScrollWidget for Credits/About screen (Work In Progress)
This commit is contained in:
Philippe Symons
2024-07-31 22:29:21 +02:00
parent 6ce9c1ec23
commit f7a687b147
25 changed files with 676 additions and 46 deletions

View File

@@ -28,6 +28,16 @@ MenuItemData gen2MenuEntries[] = {
{
.title = "PCNY Pokémon",
.onConfirmAction = goToGen2PCNYDistributionPokemonMenu,
},
{
.title = "Unlock Pikachu Bed",
.onConfirmAction = gen2SetEventFlag,
.itemParam = &GEN2_EVENTFLAG_DECORATION_PIKACHU_BED
},
{
.title = "Unlock Tentacool Doll",
.onConfirmAction = gen2SetEventFlag,
.itemParam = &GEN2_EVENTFLAG_DECORATION_TENTACOOL_DOLL
}
};
@@ -45,6 +55,16 @@ MenuItemData gen2CrystalMenuEntries[] = {
{
.title = "Unlock GS Ball",
.onConfirmAction = gen2ReceiveGSBall
},
{
.title = "Unlock Pikachu Bed",
.onConfirmAction = gen2SetEventFlag,
.itemParam = &GEN2_EVENTFLAG_DECORATION_PIKACHU_BED
},
{
.title = "Unlock Tentacool Doll",
.onConfirmAction = gen2SetEventFlag,
.itemParam = &GEN2_EVENTFLAG_DECORATION_TENTACOOL_DOLL
}
};