1
0
forked from 0ad/0ad

Fix incorrect index in 9ae084519f

Noticed by: @Angen
This was SVN commit r24276.
This commit is contained in:
Stan 2020-11-27 20:02:34 +00:00
parent 259c57929d
commit 7b49f9217e

View File

@ -415,7 +415,7 @@ void COList::DrawList(const int& selected, const CGUISpriteInstance& sprite, con
xpos = 0;
for (size_t colIdx = 0; colIdx < m_Columns.size(); ++colIdx)
{
const COListColumn& column = m_Columns[i];
const COListColumn& column = m_Columns[colIdx];
if (column.m_Hidden)
continue;