| 266 | } |
| 267 | }; |
| 268 | void _cdecl DBG_OutText(LPCSTR s, ...) |
| 269 | { |
| 270 | string64 t; |
| 271 | va_list marker; |
| 272 | va_start(marker, s); |
| 273 | vsprintf(t, s, marker); |
| 274 | va_end(marker); |
| 275 | DBG_DrawPHAbstruct(xr_new<SPHDBGOutText>(t)); |
| 276 | } |
| 277 | |
| 278 | void DBG_OpenCashedDraw() { dbg_ph_draw_mode = dmCashed; } |
| 279 | void DBG_ClosedCashedDraw(u32 remove_time) |
no test coverage detected