| 73 | #ifdef EP_DEBUG_MESSAGE_TEXT |
| 74 | template <typename... Args> |
| 75 | void DebugLogText(const char* fmt, Args&&... args) { |
| 76 | int frames = Main_Data::game_system->GetFrameCounter() - frame_offset; |
| 77 | Output::Debug(fmt, frames, std::forward<Args>(args)...); |
| 78 | } |
| 79 | #else |
| 80 | |
| 81 | template <typename... Args> |
no test coverage detected