mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Movie: Mark getters as const
These don't modify internal member state.
This commit is contained in:
@ -161,7 +161,7 @@ std::string MovieManager::GetInputDisplay()
|
||||
}
|
||||
|
||||
// NOTE: GPU Thread
|
||||
std::string MovieManager::GetRTCDisplay()
|
||||
std::string MovieManager::GetRTCDisplay() const
|
||||
{
|
||||
using ExpansionInterface::CEXIIPL;
|
||||
|
||||
@ -174,7 +174,7 @@ std::string MovieManager::GetRTCDisplay()
|
||||
}
|
||||
|
||||
// NOTE: GPU Thread
|
||||
std::string MovieManager::GetRerecords()
|
||||
std::string MovieManager::GetRerecords() const
|
||||
{
|
||||
if (IsMovieActive())
|
||||
return fmt::format("Rerecords: {}", m_rerecords);
|
||||
|
Reference in New Issue
Block a user