mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Remove pointless const's from ICmpCinemaManager.h
Were mistakenly introduced in d882ab74a1
This commit is contained in:
parent
73f7884b4a
commit
e0db65ba1b
2 changed files with 4 additions and 4 deletions
|
|
@ -269,12 +269,12 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
const CStrW GetActivePath() const override
|
||||
CStrW GetActivePath() const override
|
||||
{
|
||||
return m_IsPlayingPathQueue ? m_PathQueue.front().GetName() : CStrW();
|
||||
}
|
||||
|
||||
const fixed GetActivePathElapsedTime() const override
|
||||
fixed GetActivePathElapsedTime() const override
|
||||
{
|
||||
return m_ActivePathElapsedTime;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -102,12 +102,12 @@ public:
|
|||
/**
|
||||
* Get the name of the path currently playing, if any.
|
||||
*/
|
||||
virtual const CStrW GetActivePath() const = 0;
|
||||
virtual CStrW GetActivePath() const = 0;
|
||||
|
||||
/**
|
||||
* Get the time elapsed since the currently active path started playing.
|
||||
*/
|
||||
virtual const fixed GetActivePathElapsedTime() const = 0;
|
||||
virtual fixed GetActivePathElapsedTime() const = 0;
|
||||
|
||||
DECLARE_INTERFACE_TYPE(CinemaManager)
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue