You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These were coded for the `split_str` refactor, but are generally useful elsewhere as well.
1. upgrade Unicode `text_iterator` for C++17
2. Use SCP_string in some utility functions where appropriate
3. Avoid copying C-strings in some utility functions where it isn't necessary
4. Add concat functions to `SCP_vector`
5. Change return type `int` to `bool` on some common parselo functions
6. Add `find_white_space` and `find_gray_space` parselo functions
7. Guard arguments in `message_log_add_segs`
voidHUD_fixed_printf(float duration, color col, SCP_FORMAT_STRING constchar *format, ...) SCP_FORMAT_STRING_ARGS(3, 4); // Display a single message for duration seconds.
72
73
voidHUD_init_fixed_text(); // Clear all pending fixed text.
73
74
74
75
voidHUD_add_to_scrollback(constchar *text, int source);
75
-
voidhud_add_line_to_scrollback(constchar *text, int source, int t, int x, int y, int w);
76
76
voidhud_add_msg_to_scrollback(constchar *text, int source, int t);
0 commit comments