Skip to content

Commit

Permalink
* fix compile error and crash on swscanf
Browse files Browse the repository at this point in the history
  • Loading branch information
hazmi-e205 committed Jul 17, 2023
1 parent b5f2cdf commit 77d5d44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions Prj/zsign.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ if IsWindows() then
{
"../Externals/mingw-patch/**.h",
"../Externals/mingw-patch/**.c",
"../Externals/mingw-patch/**.cpp",
}

includedirs
Expand Down
3 changes: 2 additions & 1 deletion Scripts/copyext.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
dll_dir = sys.argv[2]
dst_dir = sys.argv[3]
list_dir = os.listdir(dll_dir)
os.makedirs(dst_dir)
if not os.path.exists(dst_dir):
os.makedirs(dst_dir)
for x in list_dir:
if x.endswith(extension) or x.endswith(extension):
src_path = os.path.abspath(dll_dir + "/" + x)
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"project": "MachOLib",
"url": "https://github.com/hazmi-e205/MachOLib",
"branch": "main",
"revision": "6c3026296c215476cd67a808999fdc32cfa405ba",
"revision": "9e4287455ab50da5c774a2745861b866682faf97",
"path": "Externals/MachOLib",
"use_submodules": false
},
Expand Down

0 comments on commit 77d5d44

Please sign in to comment.