mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Automatically calculate REMATCH_TABLE_ENTRIES
Uses the standard C way of calculating the length of an enum.
This commit is contained in:
parent
6916f09cd5
commit
9f44ebc5cd
@ -4,7 +4,6 @@
|
|||||||
#include "gym_leader_rematch.h"
|
#include "gym_leader_rematch.h"
|
||||||
|
|
||||||
#define REMATCHES_COUNT 5
|
#define REMATCHES_COUNT 5
|
||||||
#define REMATCH_TABLE_ENTRIES 78
|
|
||||||
#define REMATCH_ELITE_FOUR_ENTRIES REMATCH_SIDNEY
|
#define REMATCH_ELITE_FOUR_ENTRIES REMATCH_SIDNEY
|
||||||
|
|
||||||
struct RematchTrainer
|
struct RematchTrainer
|
||||||
|
@ -81,7 +81,11 @@ enum {
|
|||||||
REMATCH_PHOEBE,
|
REMATCH_PHOEBE,
|
||||||
REMATCH_GLACIA,
|
REMATCH_GLACIA,
|
||||||
REMATCH_DRAKE,
|
REMATCH_DRAKE,
|
||||||
REMATCH_WALLACE
|
REMATCH_WALLACE,
|
||||||
|
|
||||||
|
// The total number of rematch entries. This must be the last element
|
||||||
|
// in the enum.
|
||||||
|
REMATCH_TABLE_ENTRIES
|
||||||
};
|
};
|
||||||
|
|
||||||
void UpdateGymLeaderRematch(void);
|
void UpdateGymLeaderRematch(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user