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.
This commit is contained in:
parent
0aa824b12f
commit
1070c020db
1 changed files with 2 additions and 2 deletions
|
@ -30,12 +30,12 @@ public:
|
|||
explicit CachedGlobalRegion(VAddr addr, u32 size);
|
||||
|
||||
/// Gets the address of the shader in guest memory, required for cache management
|
||||
VAddr GetAddr() const {
|
||||
VAddr GetAddr() const override {
|
||||
return addr;
|
||||
}
|
||||
|
||||
/// 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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue