------------------------------------------------------
| 40 | |
| 41 | //------------------------------------------------------ |
| 42 | void SFxHelper::Print( const char *msg, ... ) |
| 43 | { |
| 44 | #ifndef FINAL_BUILD |
| 45 | |
| 46 | va_list argptr; |
| 47 | char text[1024]; |
| 48 | |
| 49 | va_start( argptr, msg ); |
| 50 | Q_vsnprintf (text, sizeof(text), msg, argptr); |
| 51 | va_end( argptr ); |
| 52 | |
| 53 | gi.Printf( text ); |
| 54 | |
| 55 | #endif |
| 56 | } |
| 57 | |
| 58 | //------------------------------------------------------ |
| 59 | void SFxHelper::AdjustTime( int frameTime ) |
no test coverage detected