mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 14:08:19 +00:00
Remove unused DemoRecorder_IsRecording
method
This commit is contained in:
parent
8d3351f046
commit
5c2f162da2
|
@ -229,7 +229,6 @@ public:
|
|||
virtual void ChangeMap(const char *pMap) = 0;
|
||||
|
||||
virtual void DemoRecorder_HandleAutoStart() = 0;
|
||||
virtual bool DemoRecorder_IsRecording() = 0;
|
||||
|
||||
// DDRace
|
||||
|
||||
|
|
|
@ -3252,11 +3252,6 @@ void CServer::DemoRecorder_HandleAutoStart()
|
|||
}
|
||||
}
|
||||
|
||||
bool CServer::DemoRecorder_IsRecording()
|
||||
{
|
||||
return m_aDemoRecorder[MAX_CLIENTS].IsRecording();
|
||||
}
|
||||
|
||||
void CServer::SaveDemo(int ClientID, float Time)
|
||||
{
|
||||
if(IsRecording(ClientID))
|
||||
|
|
|
@ -287,7 +287,6 @@ public:
|
|||
void Ban(int ClientID, int Seconds, const char *pReason) override;
|
||||
|
||||
void DemoRecorder_HandleAutoStart() override;
|
||||
bool DemoRecorder_IsRecording() override;
|
||||
|
||||
//int Tick()
|
||||
int64_t TickStartTime(int Tick);
|
||||
|
|
Loading…
Reference in a new issue