diff options
author | Kurausukun <lord.uber1@gmail.com> | 2021-06-01 17:16:24 -0400 |
---|---|---|
committer | Kurausukun <lord.uber1@gmail.com> | 2021-06-01 17:16:24 -0400 |
commit | c9ef0d1b7ae8cc68b4ef832f4a3c1f9cd85f716d (patch) | |
tree | dfd4253d3f7b7a2f8f4e4ee5e61d7942532f6d72 /src | |
parent | e80a68327bcfd99995ce6016acb84e61afc293f4 (diff) |
re-add const to gEvolutionTable in daycare.c
Diffstat (limited to 'src')
-rw-r--r-- | src/daycare.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daycare.c b/src/daycare.c index e29c0fc70..1c3f24ba3 100644 --- a/src/daycare.c +++ b/src/daycare.c @@ -32,7 +32,7 @@ // Combination of RSE's Day-Care (re-used on Four Island), FRLG's Day-Care, and egg_hatch.c -extern struct Evolution gEvolutionTable[][EVOS_PER_MON]; +extern const struct Evolution gEvolutionTable[][EVOS_PER_MON]; struct EggHatchData { |