renamed host.is_64bit to host.is64bit
renamed host.windows_version to host.windowsversion
This commit is contained in:
parent
c68dd29153
commit
48fdd10f4d
@ -7,7 +7,8 @@
|
||||
* Patch 2963313: Enable setting .NET framework version (Justen Hyde)
|
||||
* Switched PS3 builds from GCC to SNC
|
||||
* Ignore NoRTTI flag for Managed C++ projects (Nick Darnell)
|
||||
* Added host.is_64bit
|
||||
* Added host.is64bit
|
||||
* Added host.windowsversion
|
||||
|
||||
|
||||
-------
|
||||
|
@ -51,7 +51,7 @@ local function macosx_is_64_bit()
|
||||
return false
|
||||
end
|
||||
|
||||
host.is_64bit = function()
|
||||
host.is64bit = function()
|
||||
local host_os = _OS
|
||||
|
||||
if host_os == 'linux' or host_os == 'bsd' or host_os == 'solaris' or host_os == 'haiku' then
|
||||
|
@ -59,7 +59,7 @@ static const luaL_Reg string_functions[] = {
|
||||
static const luaL_Reg host_functions[] =
|
||||
{
|
||||
{ "windows_is_64bit_running_under_wow", windows_is_64bit_running_under_wow },
|
||||
{ "windows_version",windows_version},
|
||||
{ "windowsversion",windows_version},
|
||||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user