From 716fbaef743e46a063dc8b4e5e542e0c2ee2141e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 9 May 2019 19:13:14 -0400 Subject: video_core/memory_manager: Mark IsBlockContinuous() as a const member function Corrects the typo in its name and marks the function as a const member function, given it doesn't actually modify memory manager state. --- src/video_core/memory_manager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/video_core/memory_manager.h') diff --git a/src/video_core/memory_manager.h b/src/video_core/memory_manager.h index f69a25706..113f9d8f3 100644 --- a/src/video_core/memory_manager.h +++ b/src/video_core/memory_manager.h @@ -66,8 +66,8 @@ public: u8* GetPointer(GPUVAddr addr); const u8* GetPointer(GPUVAddr addr) const; - // Returns true if the block is continuous in host memory, false otherwise - bool IsBlockContinous(GPUVAddr start, std::size_t size); + /// Returns true if the block is continuous in host memory, false otherwise + bool IsBlockContinuous(GPUVAddr start, std::size_t size) const; /** * ReadBlock and WriteBlock are full read and write operations over virtual -- cgit v1.2.3