mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-22 18:11:34 +00:00
Use more specific type description for Lua settings
To match usage in code. "integer" type is usually used for settings intepreted as C++ int type. But these ones are parsed as std::uint64_t.
This commit is contained in:
parent
954e5884c3
commit
ed0411f2e0
1 changed files with 3 additions and 3 deletions
|
@ -41,7 +41,7 @@ This setting can only be configured by editing the settings configuration file.
|
||||||
small alloc max size
|
small alloc max size
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
:Type: integer
|
:Type: unsigned 64-bit integer
|
||||||
:Range: >= 0
|
:Range: >= 0
|
||||||
:Default: 1024
|
:Default: 1024
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ This setting can only be configured by editing the settings configuration file.
|
||||||
memory limit
|
memory limit
|
||||||
------------
|
------------
|
||||||
|
|
||||||
:Type: integer
|
:Type: unsigned 64-bit integer
|
||||||
:Range: > 0
|
:Range: > 0
|
||||||
:Default: 2147483648 (2GB)
|
:Default: 2147483648 (2GB)
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ This setting can only be configured by editing the settings configuration file.
|
||||||
instruction limit per call
|
instruction limit per call
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
:Type: integer
|
:Type: unsigned 64-bit integer
|
||||||
:Range: > 1000
|
:Range: > 1000
|
||||||
:Default: 100000000
|
:Default: 100000000
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue