summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_cache.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-03-31 01:00:26 +0100
committerGitHub <noreply@github.com>2019-03-31 01:00:26 +0100
commit1960164055ae49973828142a60ef537857f9193e (patch)
tree5379aaf02254070764a6aab59f6a35d1f52f2f9e /src/video_core/rasterizer_cache.h
parentMerge pull request #2298 from lioncash/variable (diff)
parentvideo_core: Amend constructor initializer list order where applicable (diff)
downloadyuzu-1960164055ae49973828142a60ef537857f9193e.tar
yuzu-1960164055ae49973828142a60ef537857f9193e.tar.gz
yuzu-1960164055ae49973828142a60ef537857f9193e.tar.bz2
yuzu-1960164055ae49973828142a60ef537857f9193e.tar.lz
yuzu-1960164055ae49973828142a60ef537857f9193e.tar.xz
yuzu-1960164055ae49973828142a60ef537857f9193e.tar.zst
yuzu-1960164055ae49973828142a60ef537857f9193e.zip
Diffstat (limited to 'src/video_core/rasterizer_cache.h')
-rw-r--r--src/video_core/rasterizer_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_cache.h b/src/video_core/rasterizer_cache.h
index 9fc9f3056..110ad7d26 100644
--- a/src/video_core/rasterizer_cache.h
+++ b/src/video_core/rasterizer_cache.h
@@ -71,8 +71,8 @@ private:
bool is_registered{}; ///< Whether the object is currently registered with the cache
bool is_dirty{}; ///< Whether the object is dirty (out of sync with guest memory)
u64 last_modified_ticks{}; ///< When the object was last modified, used for in-order flushing
- CacheAddr cache_addr{}; ///< Cache address memory, unique from emulated virtual address space
const u8* host_ptr{}; ///< Pointer to the memory backing this cached region
+ CacheAddr cache_addr{}; ///< Cache address memory, unique from emulated virtual address space
};
template <class T>