Build: Fix default platform on 32bits os
Former-commit-id: a068dac229fce61efa32634ff616309c91a66079
This commit is contained in:
parent
a8439756d8
commit
9a2a19a834
|
|
@ -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