renderer_opengl/gl_global_cache: Append missing override specifiers

Two of the functions here are overridden functions, so we can append
these specifiers to make it explicit.
pull/8/head
Lioncash 6 years ago
parent 0aa824b12f
commit 1070c020db

@ -30,12 +30,12 @@ public:
explicit CachedGlobalRegion(VAddr addr, u32 size); explicit CachedGlobalRegion(VAddr addr, u32 size);
/// Gets the address of the shader in guest memory, required for cache management /// Gets the address of the shader in guest memory, required for cache management
VAddr GetAddr() const { VAddr GetAddr() const override {
return addr; return addr;
} }
/// Gets the size of the shader in guest memory, required for cache management /// Gets the size of the shader in guest memory, required for cache management
std::size_t GetSizeInBytes() const { std::size_t GetSizeInBytes() const override {
return size; return size;
} }

Loading…
Cancel
Save