Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
ygopro-core
Commits
9c31714f
Commit
9c31714f
authored
Dec 22, 2015
by
IceYGO
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change effect_flag size from 8 to 4 bytes
parent
1481e336
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
effect.h
effect.h
+4
-4
No files found.
effect.h
View file @
9c31714f
...
@@ -24,8 +24,8 @@ class effect;
...
@@ -24,8 +24,8 @@ class effect;
struct
tevent
;
struct
tevent
;
struct
effect_set
;
struct
effect_set
;
struct
effect_set_v
;
struct
effect_set_v
;
enum
effect_flag
:
uint
64
;
enum
effect_flag
:
uint
32
;
enum
effect_flag2
:
uint
64
;
enum
effect_flag2
:
uint
32
;
class
effect
{
class
effect
{
public:
public:
...
@@ -141,7 +141,7 @@ public:
...
@@ -141,7 +141,7 @@ public:
#define EFFECT_TYPE_CONTINUOUS 0x0800 //
#define EFFECT_TYPE_CONTINUOUS 0x0800 //
//========== Flags ==========
//========== Flags ==========
enum
effect_flag
:
uint
64
{
enum
effect_flag
:
uint
32
{
EFFECT_FLAG_INITIAL
=
0x0001
,
EFFECT_FLAG_INITIAL
=
0x0001
,
EFFECT_FLAG_FUNC_VALUE
=
0x0002
,
EFFECT_FLAG_FUNC_VALUE
=
0x0002
,
EFFECT_FLAG_COUNT_LIMIT
=
0x0004
,
EFFECT_FLAG_COUNT_LIMIT
=
0x0004
,
...
@@ -175,7 +175,7 @@ enum effect_flag : uint64 {
...
@@ -175,7 +175,7 @@ enum effect_flag : uint64 {
EFFECT_FLAG_CVAL_CHECK
=
0x40000000
,
EFFECT_FLAG_CVAL_CHECK
=
0x40000000
,
EFFECT_FLAG_IMMEDIATELY_APPLY
=
0x80000000
,
EFFECT_FLAG_IMMEDIATELY_APPLY
=
0x80000000
,
};
};
enum
effect_flag2
:
uint
64
{
enum
effect_flag2
:
uint
32
{
EFFECT_FLAG2_NAGA
=
0x0001
,
EFFECT_FLAG2_NAGA
=
0x0001
,
EFFECT_FLAG2_COF
=
0x0002
,
EFFECT_FLAG2_COF
=
0x0002
,
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment