| 61 | #ifdef EP_DEBUG_MESSAGE |
| 62 | template <typename... Args> |
| 63 | void DebugLog(const char* fmt, Args&&... args) { |
| 64 | int frames = Main_Data::game_system->GetFrameCounter() - frame_offset; |
| 65 | Output::Debug(fmt, frames, std::forward<Args>(args)...); |
| 66 | } |
| 67 | #else |
| 68 | |
| 69 | template <typename... Args> |
no test coverage detected