diff options
author | pixel <pixel> | 2005-10-13 16:00:37 +0000 |
---|---|---|
committer | pixel <pixel> | 2005-10-13 16:00:37 +0000 |
commit | 958958395b0f7e742f55c4fb2404d097a74e9bf4 (patch) | |
tree | 980ccc7eda5df58c7bd65f14bdd900e410af6eee /Dalos/Dalos.cc | |
parent | a32f4d44f1abac4084a1fc29f8b7cda141000d96 (diff) |
Fixing various (fucking) macos X issues.
Diffstat (limited to 'Dalos/Dalos.cc')
-rw-r--r-- | Dalos/Dalos.cc | 10 |
1 files changed, 5 insertions, 5 deletions
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 <SDL.h> #include <SDL_thread.h> @@ -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(); |