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
7e4019d8
Commit
7e4019d8
authored
Dec 23, 2015
by
VanillaSalt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #28 from IceYGO/bugfix-enum-declaration
Change effect_flag size from 8 to 4 bytes
parents
77227f36
9c31714f
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 @
7e4019d8
...
...
@@ -24,8 +24,8 @@ class effect;
struct
tevent
;
struct
effect_set
;
struct
effect_set_v
;
enum
effect_flag
:
uint
64
;
enum
effect_flag2
:
uint
64
;
enum
effect_flag
:
uint
32
;
enum
effect_flag2
:
uint
32
;
class
effect
{
public:
...
...
@@ -141,7 +141,7 @@ public:
#define EFFECT_TYPE_CONTINUOUS 0x0800 //
//========== Flags ==========
enum
effect_flag
:
uint
64
{
enum
effect_flag
:
uint
32
{
EFFECT_FLAG_INITIAL
=
0x0001
,
EFFECT_FLAG_FUNC_VALUE
=
0x0002
,
EFFECT_FLAG_COUNT_LIMIT
=
0x0004
,
...
...
@@ -175,7 +175,7 @@ enum effect_flag : uint64 {
EFFECT_FLAG_CVAL_CHECK
=
0x40000000
,
EFFECT_FLAG_IMMEDIATELY_APPLY
=
0x80000000
,
};
enum
effect_flag2
:
uint
64
{
enum
effect_flag2
:
uint
32
{
EFFECT_FLAG2_NAGA
=
0x0001
,
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