summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/luaengine.cpp
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2018-11-05 13:26:29 -0600
committer cracyc <cracyc@users.noreply.github.com>2018-11-05 13:26:29 -0600
commit6e5440939948b7a891a72d3ac751906122040a47 (patch)
tree9b0feb2d39426fc64ab306048be04863e1f0436f /src/frontend/mame/luaengine.cpp
parentbce881ddb71a61bc80424e8405e2c2aa2d5f21f3 (diff)
luaengine: fix clang build (nw)
Diffstat (limited to 'src/frontend/mame/luaengine.cpp')
-rwxr-xr-xsrc/frontend/mame/luaengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/luaengine.cpp b/src/frontend/mame/luaengine.cpp
index f6978f2b22e..5f40ea6c2ea 100755
--- a/src/frontend/mame/luaengine.cpp
+++ b/src/frontend/mame/luaengine.cpp
@@ -1860,7 +1860,7 @@ void lua_engine::initialize()
"pixel", [](screen_device &sdev, float x, float y) {
return sdev.pixel((s32)x, (s32)y);
},
- "pixels", [this](screen_device &sdev, sol::this_state s) {
+ "pixels", [](screen_device &sdev, sol::this_state s) {
lua_State *L = s;
const rectangle &visarea = sdev.visible_area();
luaL_Buffer buff;