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
37ebc91f
Commit
37ebc91f
authored
Sep 23, 2018
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into server
parents
f5974af8
e17b1a56
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
cards.cdb
cards.cdb
+0
-0
gframe/gframe.cpp
gframe/gframe.cpp
+9
-5
script
script
+1
-1
No files found.
cards.cdb
View file @
37ebc91f
No preview for this file type
gframe/gframe.cpp
View file @
37ebc91f
...
@@ -37,11 +37,15 @@ int main(int argc, char* argv[]) {
...
@@ -37,11 +37,15 @@ int main(int argc, char* argv[]) {
#endif //__APPLE__
#endif //__APPLE__
#ifdef _WIN32
#ifdef _WIN32
#ifndef _DEBUG
#ifndef _DEBUG
wchar_t
exepath
[
MAX_PATH
];
char
*
pstrext
;
GetModuleFileNameW
(
NULL
,
exepath
,
MAX_PATH
);
if
(
argc
==
2
&&
(
pstrext
=
strrchr
(
argv
[
1
],
'.'
))
wchar_t
*
p
=
wcsrchr
(
exepath
,
'\\'
);
&&
(
!
mystrncasecmp
(
pstrext
,
".ydk"
,
4
)
||
!
mystrncasecmp
(
pstrext
,
".yrp"
,
4
)))
{
*
p
=
'\0'
;
wchar_t
exepath
[
MAX_PATH
];
SetCurrentDirectoryW
(
exepath
);
GetModuleFileNameW
(
NULL
,
exepath
,
MAX_PATH
);
wchar_t
*
p
=
wcsrchr
(
exepath
,
'\\'
);
*
p
=
'\0'
;
SetCurrentDirectoryW
(
exepath
);
}
#endif //_DEBUG
#endif //_DEBUG
#endif //_WIN32
#endif //_WIN32
#ifdef _WIN32
#ifdef _WIN32
...
...
script
@
47adef36
Subproject commit
7fd19f2dee87668f6d53c7b95080cf92fdecce58
Subproject commit
47adef367f7160dfbee07c236c2ce9a051733ff4
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