aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-12 17:15:52 -0500
committerLiam <byteslice@airmail.cc>2023-12-14 21:54:36 -0500
commit030e6b3980aa5ce6069041c339d49d21d68ca73b (patch)
tree428a3d3a1e322a4cfad696bdcd756dd7332acefa /src/video_core/rasterizer_interface.h
parent462ba1b360c4c314d5ae57cbe6df240562664f8c (diff)
video_core: use interval map for page count tracking
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index af1469147..fd42d26b5 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -162,7 +162,7 @@ public:
}
/// Increase/decrease the number of object in pages touching the specified region
- virtual void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) {}
+ virtual void UpdatePagesCachedCount(VAddr addr, u64 size, bool cache) {}
/// Initialize disk cached resources for the game being emulated
virtual void LoadDiskResources(u64 title_id, std::stop_token stop_loading,