From 495a8d8d9536194e94348c0cc4d6698050d67421 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Tue, 7 May 2019 13:53:42 -0400
Subject: [PATCH] core/memory: Remove unused FlushMode enum

Recent changes to memory-related code resulted in this being unused, so
we can remove it.
---
 src/core/memory.h | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/src/core/memory.h b/src/core/memory.h
index b9fa18b1db..04e2c5f1d1 100644
--- a/src/core/memory.h
+++ b/src/core/memory.h
@@ -72,15 +72,6 @@ u8* GetPointer(VAddr vaddr);
 
 std::string ReadCString(VAddr vaddr, std::size_t max_length);
 
-enum class FlushMode {
-    /// Write back modified surfaces to RAM
-    Flush,
-    /// Remove region from the cache
-    Invalidate,
-    /// Write back modified surfaces to RAM, and also remove them from the cache
-    FlushAndInvalidate,
-};
-
 /**
  * Mark each page touching the region as cached.
  */
-- 
GitLab