Remove pointless const's from ICmpCinemaManager.h

Were mistakenly introduced in d882ab74a1
This commit is contained in:
Vantha 2026-03-24 10:53:38 +01:00
parent 73f7884b4a
commit e0db65ba1b
2 changed files with 4 additions and 4 deletions

View file

@ -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;
}

View file

@ -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)
};