diff options
| author | Lioncash <mai.iam2048@gmail.com> | 2024-01-31 19:41:50 -0500 |
|---|---|---|
| committer | Lioncash <mai.iam2048@gmail.com> | 2024-02-01 23:04:39 -0500 |
| commit | ea95c82a01c531358645dfd30b9e832425a32304 (patch) | |
| tree | 8cffbecfab4d2509e2f8f3ea33fff51a51fbbb32 /Source/Core | |
| parent | d96d2cd68c60415d5658ffa27496e47b2dce7c72 (diff) | |
VertexLoaderManager: Remove unused entry struct
This isn't used anywhere, so it can be removed.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoaderManager.cpp | 10 |
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; |
