Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
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
Commits
bc7d3a9e
Commit
bc7d3a9e
authored
Dec 23, 2015
by
VanillaSalt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused variables
parent
6287c583
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
7 deletions
+4
-7
gframe/replay_mode.cpp
gframe/replay_mode.cpp
+0
-1
gframe/replay_mode.h
gframe/replay_mode.h
+1
-1
gframe/single_mode.cpp
gframe/single_mode.cpp
+0
-1
gframe/single_mode.h
gframe/single_mode.h
+1
-2
ocgcore
ocgcore
+1
-1
script
script
+1
-1
No files found.
gframe/replay_mode.cpp
View file @
bc7d3a9e
...
...
@@ -16,7 +16,6 @@ bool ReplayMode::is_paused = false;
bool
ReplayMode
::
is_swaping
=
false
;
bool
ReplayMode
::
exit_pending
=
false
;
int
ReplayMode
::
skip_turn
=
0
;
wchar_t
ReplayMode
::
event_string
[
256
];
bool
ReplayMode
::
StartReplay
(
int
skipturn
)
{
skip_turn
=
skipturn
;
...
...
gframe/replay_mode.h
View file @
bc7d3a9e
...
...
@@ -19,7 +19,7 @@ private:
static
bool
is_swaping
;
static
bool
exit_pending
;
static
int
skip_turn
;
static
wchar_t
event_string
[
256
];
public:
static
Replay
cur_replay
;
...
...
gframe/single_mode.cpp
View file @
bc7d3a9e
...
...
@@ -10,7 +10,6 @@ namespace ygo {
long
SingleMode
::
pduel
=
0
;
bool
SingleMode
::
is_closing
=
false
;
bool
SingleMode
::
is_continuing
=
false
;
wchar_t
SingleMode
::
event_string
[
256
];
bool
SingleMode
::
StartPlay
()
{
Thread
::
NewThread
(
SinglePlayThread
,
0
);
...
...
gframe/single_mode.h
View file @
bc7d3a9e
...
...
@@ -13,8 +13,7 @@ private:
static
long
pduel
;
static
bool
is_closing
;
static
bool
is_continuing
;
static
wchar_t
event_string
[
256
];
public:
static
bool
StartPlay
();
static
void
StopPlay
(
bool
is_exiting
=
false
);
...
...
ocgcore
@
76442092
Subproject commit
998ee3c363d24d8cbf45329b3f2fc17b562b4f95
Subproject commit
76442092e35ac6cbb3487aee4a6183312a2f36ab
script
@
45397d1c
Subproject commit
0923b804caf9e9c4cb9154f6f35e6e2bef34dcb3
Subproject commit
45397d1c05a9283517ef0736c16f36c8882fe5d2
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