diff options
Diffstat (limited to 'docs/source/techspecs')
-rw-r--r-- | docs/source/techspecs/luaengine.rst | 4 | ||||
-rw-r--r-- | docs/source/techspecs/luareference.rst | 5 |
2 files changed, 3 insertions, 6 deletions
diff --git a/docs/source/techspecs/luaengine.rst b/docs/source/techspecs/luaengine.rst index 5d3565af214..5e97d4e3885 100644 --- a/docs/source/techspecs/luaengine.rst +++ b/docs/source/techspecs/luaengine.rst @@ -90,7 +90,7 @@ Let’s first run MAME in a terminal to reach the Lua console: / / / _/ - mame 0.226 + mame 0.227 Copyright (C) Nicola Salmoria and the MAME team Lua 5.3 @@ -113,7 +113,7 @@ You can check at runtime which version of MAME you are running, with: :: [MAME]> print(emu.app_name() .. " " .. emu.app_version()) - mame 0.226 + mame 0.227 We now start exploring screen related methods. First, let's enumerate available screens: diff --git a/docs/source/techspecs/luareference.rst b/docs/source/techspecs/luareference.rst index d15c74efe0b..0dd14ef45cf 100644 --- a/docs/source/techspecs/luareference.rst +++ b/docs/source/techspecs/luareference.rst @@ -47,9 +47,6 @@ c:at(i) Returns the value at the 1-based index ``i``, or ``nil`` if it is out of range. c:find(v) - Returns the key for item ``v``, or ``nil`` if it is not in the collection. - The key is what you would pass to the index operator to get the value. -c:find(v) Returns the key for item ``v``, or ``nil`` if it is not in the container. The key is what you would pass to the index operator to get the value. c:index_of(v) @@ -1317,7 +1314,7 @@ Properties ^^^^^^^^^^ map.spacenum (read-only) - The address space number of the address space the map is associated with + The address space number of the address space the map is associated with. map.device (read-only) The device that owns the address space the map is associated with. map.unmap_value (read-only) |