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
27d8f577
Commit
27d8f577
authored
Sep 14, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into develop
parents
6798d8c6
1b1b8edd
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
.github/workflows/build.yml
.github/workflows/build.yml
+4
-4
gframe/deck_manager.cpp
gframe/deck_manager.cpp
+1
-1
gframe/gframe.cpp
gframe/gframe.cpp
+1
-1
gframe/premake5.lua
gframe/premake5.lua
+1
-1
premake/freetype/custom/ygopro/ftmodule.h
premake/freetype/custom/ygopro/ftmodule.h
+1
-1
premake/freetype/custom/ygopro/ftoption.h
premake/freetype/custom/ygopro/ftoption.h
+1
-1
No files found.
.github/workflows/build.yml
View file @
27d8f577
...
...
@@ -437,8 +437,8 @@ jobs:
-
name
:
Copy premake files
run
:
|
cp -r premake/* .
cp -r resource/* .
cp -
p
r premake/* .
cp -
p
r resource/* .
-
name
:
Use premake to generate make files (apt packages)
if
:
matrix.static-link !=
true
...
...
@@ -670,8 +670,8 @@ jobs:
-
name
:
Copy premake files
run
:
|
cp -r premake/* .
cp -r resource/* .
cp -
p
r premake/* .
cp -
p
r resource/* .
-
name
:
Use premake to generate make files (Homebrew packages)
if
:
matrix.static-link !=
true
...
...
gframe/deck_manager.cpp
View file @
27d8f577
...
...
@@ -342,7 +342,7 @@ bool DeckManager::SaveDeck(const Deck& deck, const wchar_t* file) {
return
false
;
std
::
stringstream
deckStream
;
SaveDeck
(
deck
,
deckStream
);
std
::
f
write
(
deckStream
.
str
().
c_str
(),
1
,
deckStream
.
str
().
length
(),
fp
);
std
::
f
puts
(
deckStream
.
str
().
c_str
(),
fp
);
std
::
fclose
(
fp
);
return
true
;
}
...
...
gframe/gframe.cpp
View file @
27d8f577
...
...
@@ -31,7 +31,7 @@ int main(int argc, char* argv[]) {
std
::
setlocale
(
LC_CTYPE
,
".UTF-8"
);
#elif defined(__APPLE__)
std
::
setlocale
(
LC_CTYPE
,
"UTF-8"
);
#el
if !defined(_WIN32)
#el
se
std
::
setlocale
(
LC_CTYPE
,
""
);
#endif
#ifdef __APPLE__
...
...
gframe/premake5.lua
View file @
27d8f577
...
...
@@ -30,7 +30,7 @@ project "YGOPro"
end
if
BUILD_FREETYPE
then
includedirs
{
"../freetype/include"
}
includedirs
{
"../freetype/
custom"
,
"../freetype/
include"
}
else
includedirs
{
FREETYPE_INCLUDE_DIR
}
libdirs
{
FREETYPE_LIB_DIR
}
...
...
premake/freetype/custom/ygopro/ftmodule.h
View file @
27d8f577
/*
* This file registers the FreeType modules compiled into the library.
*
* YGOPro only uses modules that are needed for TrueType fonts.
* YGOPro only uses modules that are needed for TrueType
and OpenType
fonts.
*
*/
...
...
premake/freetype/custom/ygopro/ftoption.h
View file @
27d8f577
...
...
@@ -5,7 +5,7 @@
* User-selectable configuration macros (specification only).
*
* This file is customized for YGOPro to include only the necessary
* configuration options for the TrueType font driver.
* configuration options for the TrueType
and OpenType
font driver.
*
* See the original FreeType source code for more information.
* /include/freetype/config/ftoption.h
...
...
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