mirror of
https://github.com/risingPhil/PokeMe64.git
synced 2026-09-14 03:35:51 -05:00
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:
@@ -3,12 +3,17 @@
|
||||
|
||||
#include "Moves.h"
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
// these are used to pass as a pointer to the gen1PrepareToTeachPikachu
|
||||
extern const Move MOVE_SURF;
|
||||
extern const Move MOVE_FLY;
|
||||
|
||||
void printMessage(void* context, const void* param);
|
||||
extern const uint16_t GEN2_EVENTFLAG_DECORATION_PIKACHU_BED;
|
||||
extern const uint16_t GEN2_EVENTFLAG_DECORATION_TENTACOOL_DOLL;
|
||||
|
||||
void activateFrameLog(void* context, const void* param);
|
||||
void advanceDialog(void* context, const void* param);
|
||||
|
||||
void goToTestScene(void* context, const void* param);
|
||||
|
||||
@@ -19,5 +24,7 @@ void goToGen2PCNYDistributionPokemonMenu(void* context, const void* param);
|
||||
void gen1PrepareToTeachPikachu(void* context, const void* param);
|
||||
void gen1TeachPikachu(void* context, const void* param);
|
||||
void gen2ReceiveGSBall(void* context, const void* param);
|
||||
void gen2SetEventFlag(void* context, const void* param);
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user