fix(FrameFlags): Adjusted frame flags

This commit is contained in:
Yimura 2021-09-21 18:10:48 +02:00
parent 1418c3141a
commit f0e76a6d75
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -5,10 +5,10 @@ namespace big
{
enum eFrameFlags : std::uint32_t
{
eFrameFlagExplosiveAmmo = 1 << 3,
eFrameFlagFireAmmo = 1 << 4,
eFrameFlagExplosiveMelee = 1 << 5,
eFrameFlagSuperJump = 1 << 6,
eFrameFlagExplosiveAmmo = 1 << 11,
eFrameFlagFireAmmo = 1 << 12,
eFrameFlagExplosiveMelee = 1 << 13,
eFrameFlagSuperJump = 1 << 14,
};
void looped::self_frame_flags()