mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-28 04:34:28 +01:00
Fix redefinition error in pokemon_config.h
This commit is contained in:
parent
6f25c47d6b
commit
788b9f675f
10
include/constants/expansion_branches.h
Normal file
10
include/constants/expansion_branches.h
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#ifndef GUARD_CONSTANTS_EXPANSION_BRANCHES_H
|
||||||
|
#define GUARD_CONSTANTS_EXPANSION_BRANCHES_H
|
||||||
|
|
||||||
|
// Branch defines: Used by other branches to detect each other.
|
||||||
|
// Each define must be here for each of RHH's branch you have pulled.
|
||||||
|
// e.g. If you have both the battle_engine and pokemon_expansion branch,
|
||||||
|
// then both BATTLE_ENGINE and POKEMON_EXPANSION must be defined here.
|
||||||
|
#define POKEMON_EXPANSION
|
||||||
|
|
||||||
|
#endif
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef GUARD_CONSTANTS_POKEMON_CONFIG_H
|
#ifndef GUARD_CONSTANTS_POKEMON_CONFIG_H
|
||||||
#define GUARD_CONSTANTS_POKEMON_CONFIG_H
|
#define GUARD_CONSTANTS_POKEMON_CONFIG_H
|
||||||
|
|
||||||
|
#include "constants/expansion_branches.h"
|
||||||
|
|
||||||
#ifndef GEN_3
|
#ifndef GEN_3
|
||||||
#define GEN_3 0
|
#define GEN_3 0
|
||||||
#define GEN_4 1
|
#define GEN_4 1
|
||||||
|
@ -121,12 +121,6 @@
|
|||||||
f; \
|
f; \
|
||||||
})
|
})
|
||||||
|
|
||||||
// Branch defines: Used by other branches to detect each other.
|
|
||||||
// Each define must be here for each of RHH's branch you have pulled.
|
|
||||||
// e.g. If you have both the battle_engine and pokemon_expansion branch,
|
|
||||||
// then both BATTLE_ENGINE and POKEMON_EXPANSION must be defined here.
|
|
||||||
#define POKEMON_EXPANSION
|
|
||||||
|
|
||||||
#define ROUND_BITS_TO_BYTES(numBits)(((numBits) / 8) + (((numBits) % 8) ? 1 : 0))
|
#define ROUND_BITS_TO_BYTES(numBits)(((numBits) / 8) + (((numBits) % 8) ? 1 : 0))
|
||||||
|
|
||||||
#define DEX_FLAGS_NO (ROUND_BITS_TO_BYTES(POKEMON_SLOTS_NUMBER))
|
#define DEX_FLAGS_NO (ROUND_BITS_TO_BYTES(POKEMON_SLOTS_NUMBER))
|
||||||
|
Loading…
Reference in New Issue
Block a user