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

Minor fixs

This commit is contained in:
CrIcKeT
2021-12-28 18:57:00 +03:00
parent fe07119585
commit 94cc16a8e4
2 changed files with 5 additions and 5 deletions

View File

@@ -14,17 +14,17 @@ print("[!] RailNetwork initialized!")
local ffi = require("ffi")
local OSName = "gmsv_turbostroi_"
if jis.os == "Windows" then
if jit.os == "Windows" then
OSName = OSName.."win"
if jit.arch == "x86"
OSName = OSName.."86"
OSName = OSName.."32"
else
OSName = OSName.."64"
end
elseif jit.os == "Linux" then
OSName = OSName.."linux"
if jit.arch == "x86"
OSName = OSName.."86"
OSName = OSName.."32"
else
OSName = OSName.."64"
end