diff --git a/src/core/hle/service/nvflinger/consumer_base.cpp b/src/core/hle/service/nvflinger/consumer_base.cpp index 0524463bdc..3ccbb7fb89 100644 --- a/src/core/hle/service/nvflinger/consumer_base.cpp +++ b/src/core/hle/service/nvflinger/consumer_base.cpp @@ -117,7 +117,8 @@ Status ConsumerBase::ReleaseBufferLocked(s32 slot, return err; } -bool ConsumerBase::StillTracking(s32 slot, const std::shared_ptr graphic_buffer) { +bool ConsumerBase::StillTracking(s32 slot, + const std::shared_ptr graphic_buffer) const { if (slot < 0 || slot >= BufferQueueDefs::NUM_BUFFER_SLOTS) { return false; } diff --git a/src/core/hle/service/nvflinger/consumer_base.h b/src/core/hle/service/nvflinger/consumer_base.h index 453a47349d..d72160c2cf 100644 --- a/src/core/hle/service/nvflinger/consumer_base.h +++ b/src/core/hle/service/nvflinger/consumer_base.h @@ -38,7 +38,7 @@ protected: Status AcquireBufferLocked(BufferItem* item, std::chrono::nanoseconds present_when, u64 max_frame_number = 0); Status ReleaseBufferLocked(s32 slot, const std::shared_ptr graphic_buffer); - bool StillTracking(s32 slot, const std::shared_ptr graphic_buffer); + bool StillTracking(s32 slot, const std::shared_ptr graphic_buffer) const; Status AddReleaseFenceLocked(s32 slot, const std::shared_ptr graphic_buffer, const Fence& fence);