Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect FLAG_REMATCH_* constants #1960

Open
RainingChain opened this issue Nov 21, 2023 · 0 comments
Open

Incorrect FLAG_REMATCH_* constants #1960

RainingChain opened this issue Nov 21, 2023 · 0 comments

Comments

@RainingChain
Copy link

In .\include\constants\flags.h

// Trainer Rematch Flags
#define FLAG_MATCH_CALL_REGISTERED           0x15C
#define FLAG_REMATCH_ROSE                    0x15D
#define FLAG_REMATCH_ANDRES                  0x15E
#define FLAG_REMATCH_DUSTY                   0x15F

are incorrect.

It should be

// Trainer Rematch Flags
#define FLAG_MATCH_CALL_REGISTERED           0x15C
#define FLAG_REMATCH_ROSE                    0x15C
#define FLAG_REMATCH_ANDRES                  0x15D
#define FLAG_REMATCH_DUSTY                   0x15E

The flag is FLAG_MATCH_CALL_REGISTERED + REMATCH_* (from .\include\gym_leader_rematch.h)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant