summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VertexLoaderManager.cpp
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2024-01-31 19:41:50 -0500
committerLioncash <mai.iam2048@gmail.com>2024-02-01 23:04:39 -0500
commitea95c82a01c531358645dfd30b9e832425a32304 (patch)
tree8cffbecfab4d2509e2f8f3ea33fff51a51fbbb32 /Source/Core/VideoCommon/VertexLoaderManager.cpp
parentd96d2cd68c60415d5658ffa27496e47b2dce7c72 (diff)
VertexLoaderManager: Remove unused entry struct
This isn't used anywhere, so it can be removed.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoaderManager.cpp')
-rw-r--r--Source/Core/VideoCommon/VertexLoaderManager.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/Core/VideoCommon/VertexLoaderManager.cpp b/Source/Core/VideoCommon/VertexLoaderManager.cpp
index fb24803f1c..d4e4f57cba 100644
--- a/Source/Core/VideoCommon/VertexLoaderManager.cpp
+++ b/Source/Core/VideoCommon/VertexLoaderManager.cpp
@@ -118,16 +118,6 @@ void UpdateVertexArrayPointers()
g_bases_dirty = false;
}
-namespace
-{
-struct entry
-{
- std::string text;
- u64 num_verts;
- bool operator<(const entry& other) const { return num_verts > other.num_verts; }
-};
-} // namespace
-
void MarkAllDirty()
{
g_bases_dirty = true;