Skip to content

Commit 43f4c81

Browse files
authored
Merge pull request #424 from Ghabry/cba-afterimage
Rename AfterImage to Afterimage
2 parents 8fc9275 + 5944c64 commit 43f4c81

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

generator/csv/enums.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ BattlerAnimationItemSkill,Movement,none,0
5959
BattlerAnimationItemSkill,Movement,step,1
6060
BattlerAnimationItemSkill,Movement,jump,2
6161
BattlerAnimationItemSkill,Movement,move,3
62-
BattlerAnimationItemSkill,AfterImage,none,0
63-
BattlerAnimationItemSkill,AfterImage,add,1
62+
BattlerAnimationItemSkill,Afterimage,none,0
63+
BattlerAnimationItemSkill,Afterimage,add,1
6464
BattlerAnimationPose,AnimType,character,0
6565
BattlerAnimationPose,AnimType,battle,1
6666
Chipset,AnimType,reciprocating,0

generator/csv/fields.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ BattlerAnimationItemSkill,unknown02,f,Int32,0x02,0,0,1,
9696
BattlerAnimationItemSkill,type,f,Enum<BattlerAnimationItemSkill_AnimType>,0x03,0,0,1,
9797
BattlerAnimationItemSkill,weapon_animation_id,f,Ref<BattlerAnimationWeapon>,0x04,0,0,1,
9898
BattlerAnimationItemSkill,movement,f,Enum<BattlerAnimationItemSkill_Movement>,0x05,0,0,1,
99-
BattlerAnimationItemSkill,after_image,f,Enum<BattlerAnimationItemSkill_AfterImage>,0x06,0,0,1,
99+
BattlerAnimationItemSkill,after_image,f,Enum<BattlerAnimationItemSkill_Afterimage>,0x06,0,0,1,
100100
BattlerAnimationItemSkill,attacks,f,Int32,0x07,0,0,1,
101101
BattlerAnimationItemSkill,ranged,f,Boolean,0x08,False,0,1,
102102
BattlerAnimationItemSkill,ranged_animation_id,f,Ref<BattlerAnimationWeapon>,0x09,0,0,1,

src/generated/lcf/rpg/battleranimationitemskill.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ namespace rpg {
5656
"jump",
5757
"move"
5858
);
59-
enum AfterImage {
60-
AfterImage_none = 0,
61-
AfterImage_add = 1
59+
enum Afterimage {
60+
Afterimage_none = 0,
61+
Afterimage_add = 1
6262
};
63-
static constexpr auto kAfterImageTags = lcf::makeEnumTags<AfterImage>(
63+
static constexpr auto kAfterimageTags = lcf::makeEnumTags<Afterimage>(
6464
"none",
6565
"add"
6666
);
@@ -90,7 +90,7 @@ namespace rpg {
9090
os << static_cast<std::underlying_type_t<decltype(code)>>(code);
9191
return os;
9292
}
93-
inline std::ostream& operator<<(std::ostream& os, BattlerAnimationItemSkill::AfterImage code) {
93+
inline std::ostream& operator<<(std::ostream& os, BattlerAnimationItemSkill::Afterimage code) {
9494
os << static_cast<std::underlying_type_t<decltype(code)>>(code);
9595
return os;
9696
}

src/generated/rpg_enums.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ constexpr decltype(BattlerAnimation::kPoseTags) BattlerAnimation::kPoseTags;
5757
constexpr decltype(BattlerAnimationItemSkill::kSpeedTags) BattlerAnimationItemSkill::kSpeedTags;
5858
constexpr decltype(BattlerAnimationItemSkill::kAnimTypeTags) BattlerAnimationItemSkill::kAnimTypeTags;
5959
constexpr decltype(BattlerAnimationItemSkill::kMovementTags) BattlerAnimationItemSkill::kMovementTags;
60-
constexpr decltype(BattlerAnimationItemSkill::kAfterImageTags) BattlerAnimationItemSkill::kAfterImageTags;
60+
constexpr decltype(BattlerAnimationItemSkill::kAfterimageTags) BattlerAnimationItemSkill::kAfterimageTags;
6161
constexpr decltype(BattlerAnimationPose::kAnimTypeTags) BattlerAnimationPose::kAnimTypeTags;
6262
constexpr decltype(Chipset::kAnimTypeTags) Chipset::kAnimTypeTags;
6363
constexpr decltype(Skill::kTypeTags) Skill::kTypeTags;

0 commit comments

Comments
 (0)