diff --git a/src/debug.h b/src/debug.h index 9e54184357..d14fa7b06f 100644 --- a/src/debug.h +++ b/src/debug.h @@ -134,15 +134,6 @@ const char *GetLogPrefix(); /** The real time in the game. */ extern uint32 _realtime_tick; -inline void IncreaseRealtimeTick(uint32 increase) -{ -#if defined(__GNUC__) || defined(__clang__) - __atomic_add_fetch(&_realtime_tick, increase, __ATOMIC_RELAXED); -#else - _realtime_tick += increase; -#endif -} - void ClearDesyncMsgLog(); void LogDesyncMsg(std::string msg); char *DumpDesyncMsgLog(char *buffer, const char *last);