VertexLoaderManager: Use fill() in Init()

Same behavior, less code.
This commit is contained in:
Lioncash 2024-01-31 19:46:24 -05:00
parent ea95c82a01
commit 4f40bdf501

View file

@ -64,10 +64,8 @@ bool g_needs_cp_xf_consistency_check;
void Init()
{
MarkAllDirty();
for (auto& map_entry : g_main_vertex_loaders)
map_entry = nullptr;
for (auto& map_entry : g_preprocess_vertex_loaders)
map_entry = nullptr;
g_main_vertex_loaders.fill(nullptr);
g_preprocess_vertex_loaders.fill(nullptr);
SETSTAT(g_stats.num_vertex_loaders, 0);
}