1 | function debug_printline(arg0, arg1) |
2 | { |
3 | if (scr_debug()) |
4 | { |
5 | draw_set_font(fnt_small); |
6 | draw_set_color(c_black); |
7 | yy = 480 - (8 * arg1); |
8 | xx = 2; |
9 | draw_set_color(c_white); |
10 | } |
11 | } |