Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-2pick
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-2pick
Commits
8ec251d5
Commit
8ec251d5
authored
Mar 29, 2019
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'test' of github.com:mercury233/ygopro
parents
8ed60163
3bc07cdf
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
6 deletions
+14
-6
gframe/data_manager.h
gframe/data_manager.h
+1
-1
gframe/game.cpp
gframe/game.cpp
+2
-0
gframe/myfilesystem.h
gframe/myfilesystem.h
+2
-3
gframe/premake4.lua
gframe/premake4.lua
+3
-2
gframe/spmemvfs/premake4.lua
gframe/spmemvfs/premake4.lua
+6
-0
gframe/spmemvfs/spmemvfs.c
gframe/spmemvfs/spmemvfs.c
+0
-0
gframe/spmemvfs/spmemvfs.h
gframe/spmemvfs/spmemvfs.h
+0
-0
No files found.
gframe/data_manager.h
View file @
8ec251d5
...
...
@@ -3,7 +3,7 @@
#include "config.h"
#include "sqlite3.h"
#include "spmemvfs.h"
#include "spmemvfs
/spmemvfs
.h"
#include "client_card.h"
#include <unordered_map>
...
...
gframe/game.cpp
View file @
8ec251d5
...
...
@@ -1974,6 +1974,8 @@ void Game::OnResize() {
lstLog
->
setRelativePosition
(
Resize
(
10
,
10
,
290
,
290
));
if
(
showingcode
)
ShowCardInfo
(
showingcode
,
true
);
else
ClearCardInfo
();
btnClearLog
->
setRelativePosition
(
Resize
(
160
,
300
,
260
,
325
));
wPhase
->
setRelativePosition
(
Resize
(
480
,
310
,
855
,
330
));
...
...
gframe/myfilesystem.h
View file @
8ec251d5
...
...
@@ -123,8 +123,7 @@ public:
return
;
struct
stat
fileStat
;
std
::
vector
<
file_unit
>
file_list
;
while
((
dirp
=
readdir
(
dir
))
!=
nullptr
)
{
while
((
dirp
=
readdir
(
dir
))
!=
nullptr
)
{
file_unit
funit
;
char
fname
[
1024
];
strcpy
(
fname
,
path
);
...
...
@@ -143,7 +142,7 @@ public:
static
bool
TraversalDirSort
(
file_unit
file1
,
file_unit
file2
)
{
if
(
file1
.
is_dir
!=
file2
.
is_dir
)
{
return
file
1
.
is_dir
;
return
file
2
.
is_dir
;
}
else
{
return
file1
.
filename
<
file2
.
filename
;
}
...
...
gframe/premake4.lua
View file @
8ec251d5
include
"lzma/."
include
"spmemvfs/."
project
"ygopro"
kind
"WindowedApp"
files
{
"**.cpp"
,
"**.cc"
,
"**.c"
,
"**.h"
}
excludes
"lzma/**"
excludes
{
"lzma/**"
,
"spmemvfs/**"
}
includedirs
{
"../ocgcore"
}
links
{
"ocgcore"
,
"clzma"
,
"Irrlicht"
,
"freetype"
,
"sqlite3"
,
"lua"
,
"event"
}
links
{
"ocgcore"
,
"clzma"
,
"
cspmemvfs"
,
"
Irrlicht"
,
"freetype"
,
"sqlite3"
,
"lua"
,
"event"
}
if
USE_IRRKLANG
then
defines
{
"YGOPRO_USE_IRRKLANG"
}
links
{
"ikpmp3"
}
...
...
gframe/spmemvfs/premake4.lua
0 → 100644
View file @
8ec251d5
project
"cspmemvfs"
kind
"StaticLib"
files
{
"**.c"
,
"**.h"
}
configuration
"windows"
includedirs
{
"../../sqlite3"
}
gframe/spmemvfs.c
→
gframe/spmemvfs
/spmemvfs
.c
View file @
8ec251d5
File moved
gframe/spmemvfs.h
→
gframe/spmemvfs
/spmemvfs
.h
View file @
8ec251d5
File moved
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