mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-20 23:44:08 +00:00
Remove pointless const's from ICmpCinemaManager.h
Were mistakenly introduced in d882ab74a1
This commit is contained in:
@@ -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)
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user