diff options
author | 2018-02-07 16:38:41 -0500 | |
---|---|---|
committer | 2018-02-07 16:38:41 -0500 | |
commit | ec5d60720fbb4fda3ea3a66dce6f6380678029bf (patch) | |
tree | a5afe43c41399c0cfb723affa0cb6a2b2bd5d7ef | |
parent | b95700a403857a301ac7f459d753634d0dcf21bf (diff) |
Minor updates (nw)
Minor updates (nw)
-rw-r--r-- | docs/source/techspecs/luaengine.rst | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/source/techspecs/luaengine.rst b/docs/source/techspecs/luaengine.rst index 34264935051..01b4a85513d 100644 --- a/docs/source/techspecs/luaengine.rst +++ b/docs/source/techspecs/luaengine.rst @@ -48,9 +48,16 @@ Let's first run MAME in a terminal to reach the LUA console: :: $ mame -console YOUR_ROM - M.A.M.E. v0.158 (Feb 5 2015) - Multiple Arcade Machine Emulator - Copyright Nicola Salmoria and the MAME team - Lua 5.3.0 Copyright (C) 1994-2015 Lua.org, PUC-Rio + _/ _/ _/_/ _/ _/ _/_/_/_/ + _/_/ _/_/ _/ _/ _/_/ _/_/ _/ + _/ _/ _/ _/_/_/_/ _/ _/ _/ _/_/_/ + _/ _/ _/ _/ _/ _/ _/ + _/ _/ _/ _/ _/ _/ _/_/_/_/ + mame v0.195 + Copyright (C) Nicola Salmoria and the MAME team + + Lua 5.3 + Copyright (C) Lua.org, PUC-Rio > @@ -70,7 +77,7 @@ You can check at runtime which version of MAME you are running, with: :: > print(emu.app_name() .. " " .. emu.app_version()) - mame 0.158 + mame 0.195 We now start exploring screen related methods. First, let's enumerate available screens: |