summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/luaengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/luaengine.h')
-rw-r--r--src/emu/luaengine.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/emu/luaengine.h b/src/emu/luaengine.h
index 0375312228a..6bf2217cc75 100644
--- a/src/emu/luaengine.h
+++ b/src/emu/luaengine.h
@@ -61,20 +61,20 @@ public:
void initialize();
void lua_execute();
void report_errors(int status);
-
+
void createvm();
- void execute(const char *filename);
+ void execute(const char *filename);
void execute_string(const char *value);
void close();
-
- //static
+
+ //static
static int emu_gamename(lua_State *L);
static int emu_keypost(lua_State *L);
-private:
+private:
// internal state
running_machine & m_machine; // reference to our machine
- lua_State* m_lua_state;
-
+ lua_State* m_lua_state;
+
static lua_engine* luaThis;
};