From 958958395b0f7e742f55c4fb2404d097a74e9bf4 Mon Sep 17 00:00:00 2001 From: pixel Date: Thu, 13 Oct 2005 16:00:37 +0000 Subject: Fixing various (fucking) macos X issues. --- Dalos/Dalos.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Dalos') diff --git a/Dalos/Dalos.cc b/Dalos/Dalos.cc index b7c201a..88171c4 100644 --- a/Dalos/Dalos.cc +++ b/Dalos/Dalos.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Dalos.cc,v 1.18 2005-06-20 22:43:35 pixel Exp $ */ +/* $Id: Dalos.cc,v 1.19 2005-10-13 16:00:37 pixel Exp $ */ #include #include @@ -90,8 +90,8 @@ class threaded_locker : public locker_t { SDL_mutex * mutex; }; -static int lua_print(lua_State * _L) { - Lua * L = Lua::find(_L); +static int lua_print(lua_State * __L) { + Lua * L = Lua::find(__L); String t = L->tostring() + "\n"; char * tc = t.strdup(); @@ -102,10 +102,10 @@ static int lua_print(lua_State * _L) { return 0; } -static void lua_hook(lua_State * _L, lua_Debug * ar) { +static void lua_hook(lua_State * __L, lua_Debug * ar) { if (!lua_started) return; - Lua * L = Lua::find(_L); + Lua * L = Lua::find(__L); if (do_lua_break) { L->do_break(); -- cgit v1.2.3