Parcourir la source

RasterizerCache: Correct documentation.

Fernando Sahmkow il y a 6 ans
Parent
commit
1887afaf9e
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      src/video_core/rasterizer_cache.h

+ 2 - 2
src/video_core/rasterizer_cache.h

@@ -75,8 +75,8 @@ public:
 private:
 private:
     bool is_registered{};      ///< Whether the object is currently registered with the cache
     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)
     bool is_dirty{};           ///< Whether the object is dirty (out of sync with guest memory)
-    bool is_memory_marked{};   ///< Whether it's marking rasterizer memory.
-    bool is_sync_pending{};    ///< Whether it's pending deletion.
+    bool is_memory_marked{};   ///< Whether the object is marking rasterizer memory.
+    bool is_sync_pending{};    ///< Whether the object is pending deletion.
     u64 last_modified_ticks{}; ///< When the object was last modified, used for in-order flushing
     u64 last_modified_ticks{}; ///< When the object was last modified, used for in-order flushing
     VAddr cpu_addr{};          ///< Cpu address memory, unique from emulated virtual address space
     VAddr cpu_addr{};          ///< Cpu address memory, unique from emulated virtual address space
 };
 };