Skip to content
Snippets Groups Projects
Commit 75e5d0a6 authored by Lioncash's avatar Lioncash
Browse files

gl_rasterizer: Fix compilation for debug builds

parent 006fe5fc
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ union PicaShaderConfig {
// We don't sync const_color here because of the high variance, it is a
// shader uniform instead.
const auto& tev_stages = regs.GetTevStages();
DEBUG_ASSERT(res.tev_stages.size() == tev_stages.size());
DEBUG_ASSERT(state.tev_stages.size() == tev_stages.size());
for (size_t i = 0; i < tev_stages.size(); i++) {
const auto& tev_stage = tev_stages[i];
state.tev_stages[i].sources_raw = tev_stage.sources_raw;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment