mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-22 04:08:40 -05:00
video_core: Add missing override specifiers
Ensures that the signatures will always match with the base class. Also silences a few compilation warnings.
This commit is contained in:
@ -538,12 +538,12 @@ private:
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void Register(const Surface& object) {
|
||||
void Register(const Surface& object) override {
|
||||
RasterizerCache<Surface>::Register(object);
|
||||
}
|
||||
|
||||
/// Unregisters an object from the cache
|
||||
void Unregister(const Surface& object) {
|
||||
void Unregister(const Surface& object) override {
|
||||
if (object->IsReinterpreted()) {
|
||||
auto interval = GetReinterpretInterval(object);
|
||||
reinterpreted_surfaces.erase(interval);
|
||||
|
Reference in New Issue
Block a user