diff --git a/src/video_core/page_manager.cpp b/src/video_core/page_manager.cpp index f3d2ee072..d539e0924 100644 --- a/src/video_core/page_manager.cpp +++ b/src/video_core/page_manager.cpp @@ -225,7 +225,7 @@ struct PageManager::Impl { PageState& state = cached_pages[page]; // Apply the change to the page state - const u8 new_count = state.AddDelta (); + const u8 new_count = state.AddDelta(); if (auto new_perms = state.Perm(); new_perms != perms) [[unlikely]] { // If the protection changed add pending (un)protect action @@ -293,7 +293,7 @@ struct PageManager::Impl { // Apply the change to the page state const u8 new_count = - update ? state.AddDelta () : state.AddDelta<0>(); + update ? state.AddDelta() : state.AddDelta<0>(); if (auto new_perms = state.Perm(); new_perms != perms) [[unlikely]] { // If the protection changed add pending (un)protect action