1 | function draw_text_shadow_width(arg0, arg1, arg2, arg3) |
2 | { |
3 | __txtcolor__ = draw_get_color(); |
4 | draw_set_color(c_black); |
5 | draw_text_width(arg0 + 1, arg1 + 1, string_hash_to_newline(arg2), arg3); |
6 | draw_set_color(__txtcolor__); |
7 | draw_text_width(arg0, arg1, string_hash_to_newline(arg2), arg3); |
8 | } |