Build: Fix default platform on 32bits os
Former-commit-id: 4d6c477bfb8516ec6665c92adf1cba6be1d5eed2
This commit is contained in:
parent
b2b2fe2bfe
commit
d03b0d759d
|
|
@ -9,7 +9,7 @@ function NazaraBuild:Execute()
|
||||||
if (os.is64bit()) then
|
if (os.is64bit()) then
|
||||||
platformData = {"x64", "x86"}
|
platformData = {"x64", "x86"}
|
||||||
else
|
else
|
||||||
platformData = {"x64", "x86"}
|
platformData = {"x86", "x64"}
|
||||||
end
|
end
|
||||||
|
|
||||||
if (self.Actions[_ACTION] == nil) then
|
if (self.Actions[_ACTION] == nil) then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue