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
commit 69634fdbd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
};