summaryrefslogtreecommitdiff
path: root/Dalos
diff options
context:
space:
mode:
Diffstat (limited to 'Dalos')
-rw-r--r--Dalos/Dalos.cc10
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();