summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2023-12-19 16:14:09 +0100
committerGitHub <noreply@github.com>2023-12-19 16:14:09 +0100
commit97ad3e75304fdf604e7619986388df9d659c3e52 (patch)
treeea5ca8448da392fc0a66d5019a694b5bff3a2013 /src/video_core/rasterizer_interface.h
parentMerge pull request #12304 from liamwhite/flinger-wtf (diff)
parentRevert "video_core: use interval map for page count tracking" (diff)
downloadyuzu-97ad3e75304fdf604e7619986388df9d659c3e52.tar
yuzu-97ad3e75304fdf604e7619986388df9d659c3e52.tar.gz
yuzu-97ad3e75304fdf604e7619986388df9d659c3e52.tar.bz2
yuzu-97ad3e75304fdf604e7619986388df9d659c3e52.tar.lz
yuzu-97ad3e75304fdf604e7619986388df9d659c3e52.tar.xz
yuzu-97ad3e75304fdf604e7619986388df9d659c3e52.tar.zst
yuzu-97ad3e75304fdf604e7619986388df9d659c3e52.zip
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 fd42d26b5..af1469147 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, bool cache) {}
+ virtual void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) {}
/// Initialize disk cached resources for the game being emulated
virtual void LoadDiskResources(u64 title_id, std::stop_token stop_loading,