Changeset 490
- Timestamp:
- 08/21/08 07:17:23 (5 years ago)
- Location:
- branches/juciphox
- Files:
-
- 3 edited
-
core/luascript.c (modified) (1 diff)
-
core/script.c (modified) (2 diffs)
-
doc/version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/juciphox/core/luascript.c
r489 r490 478 478 479 479 if lua_isboolean( L, 1 ) script_print_screen_statement( lua_toboolean( L, 1 ) ); 480 else script_print_screen_statement( luaL_checknumber( L, 1 ) );480 else script_print_screen_statement( luaL_checknumber( L, 1 )+10000 ); 481 481 return 0; 482 482 } -
branches/juciphox/core/script.c
r489 r490 403 403 void script_print_screen_statement(int val) 404 404 { 405 print_screen_p = val; 405 406 if (val) { 406 407 if (print_screen_d>=0) close(print_screen_d); … … 418 419 print_screen_d = open(print_screen_file, O_WRONLY|O_CREAT|O_TRUNC, 0777); 419 420 } 420 print_screen_p = val;421 421 } 422 422 -
branches/juciphox/doc/version.txt
r489 r490 5 5 6 6 log 7 8 9 10 490 11 Jucifer 12 13 - quick fix for a couple of print_screen(0)-related issues 14 7 15 8 16
Note: See TracChangeset
for help on using the changeset viewer.