Changeset 899 for trunk/core/luascript.c
- Timestamp:
- 06/04/10 08:48:34 (3 years ago)
- File:
-
- 1 edited
-
trunk/core/luascript.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/luascript.c
r865 r899 67 67 } 68 68 69 static int luaCB_set_console_layout( lua_State* L ) 70 { 71 script_console_set_layout(luaL_checknumber( L, 1 ),luaL_checknumber( L, 2 ),luaL_checknumber( L, 3 ),luaL_checknumber( L, 4 )); 72 return 0; 73 } 74 75 static int luaCB_set_console_autoredraw( lua_State* L ) 76 { 77 script_console_set_autoredraw(luaL_checknumber( L, 1 )); 78 return 0; 79 } 80 81 static int luaCB_console_redraw( lua_State* L ) 82 { 83 script_console_redraw(); 84 return 0; 85 } 69 86 static int luaCB_get_av96( lua_State* L ) 70 87 { … … 1288 1305 FUNC(sleep); 1289 1306 FUNC(cls); 1307 FUNC(set_console_layout); 1308 FUNC(set_console_autoredraw); 1309 FUNC(console_redraw); 1290 1310 1291 1311 lua_pushlightuserdata( L, kbd_sched_click );
Note: See TracChangeset
for help on using the changeset viewer.