mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Fix compile with LuaBridge
This commit is contained in:
parent
ecc0d5a977
commit
b8e52b09c3
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ struct Stack <std::string const&>
|
|||
{
|
||||
static inline void push (lua_State* L, std::string const& str)
|
||||
{
|
||||
lua_pushstring (L, str.c_str(), str.size());
|
||||
lua_pushstring (L, str.c_str());
|
||||
}
|
||||
|
||||
static inline std::string get (lua_State* L, int index)
|
||||
|
|
Loading…
Reference in a new issue