1
0
Fork 0

DBG: fixed Script::Flags implementation

This commit is contained in:
mrexodia 2017-08-14 16:23:58 +02:00
parent 88aa0db41c
commit a404f63960
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 9 additions and 9 deletions

View File

@ -3,15 +3,15 @@
static const char* flagTable[] =
{
"ZF",
"OF",
"CF",
"PF",
"SF",
"TF",
"AF",
"DF",
"IF"
"_ZF",
"_OF",
"_CF",
"_PF",
"_SF",
"_TF",
"_AF",
"_DF",
"_IF"
};
SCRIPT_EXPORT bool Script::Flag::Get(FlagEnum flag)