1
0
mirror of https://github.com/metrostroi-repo/MetrostroiAddon.git synced 2026-05-02 00:42:29 +00:00

Ultra super best code

This commit is contained in:
CrIcKeT
2021-12-28 19:21:02 +03:00
parent 94cc16a8e4
commit 1900e28138
2 changed files with 14 additions and 21 deletions

View File

@@ -219,20 +219,17 @@ local OSName = "gmsv_turbostroi_"
if jis.os == "Windows" then
OSName = OSName.."win"
if jit.arch == "x86"
OSName = OSName.."32"
else
OSName = OSName.."64"
end
elseif jit.os == "Linux" then
OSName = OSName.."linux"
if jit.arch == "x86"
OSName = OSName.."32"
else
OSName = OSName.."64"
end
end
if jit.arch == "x86"
OSName = OSName.."32"
else
OSName = OSName.."64"
end
local TS = ffi.load(OSName)
Metrostroi = {}