From efc37ee29768093e8f356c8b6313572d66311a4c Mon Sep 17 00:00:00 2001 From: mahlemiut Date: Mon, 7 Mar 2016 21:29:06 +1300 Subject: Linux compile fix. --- src/emu/luaengine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/emu/luaengine.cpp') diff --git a/src/emu/luaengine.cpp b/src/emu/luaengine.cpp index d35a10d9167..4ffee509693 100644 --- a/src/emu/luaengine.cpp +++ b/src/emu/luaengine.cpp @@ -1709,13 +1709,13 @@ void lua_engine::start() namespace luabridge { template <> - struct Stack { - static inline void push (lua_State* L, UINT64 value) { + struct Stack { + static inline void push (lua_State* L, unsigned long long value) { lua_pushunsigned(L, static_cast (value)); } - static inline UINT64 get (lua_State* L, int index) { - return static_cast (luaL_checkunsigned (L, index)); + static inline unsigned long long get (lua_State* L, int index) { + return static_cast (luaL_checkunsigned (L, index)); } }; } -- cgit v1.2.3