Merge pull request #1264 from piepie62/master

Use bitflags
This commit is contained in:
TuxSH
2019-06-28 19:44:09 +02:00
committed by GitHub

View File

@@ -45,9 +45,9 @@ typedef struct CheatProcessInfo
typedef struct CheatDescription
{
u32 active;
u32 valid;
struct {
u8 active : 1;
u8 valid : 1;
u8 hasKeyCode : 1;
u8 activeStorage : 1;
};