mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-04 01:07:22 +00:00
GUI: remove unused variable
This commit is contained in:
parent
b6c8d2add9
commit
f208f8e00b
@ -115,7 +115,6 @@ void GroupedListWidget::sortGroups() {
|
||||
|
||||
);
|
||||
|
||||
uint curListSize = 0;
|
||||
for (uint i = 0; i != _groupHeaders.size(); ++i) {
|
||||
Common::U32String header = _groupHeaders[i];
|
||||
Common::U32String displayedHeader;
|
||||
@ -132,14 +131,12 @@ void GroupedListWidget::sortGroups() {
|
||||
displayedHeader.toUppercase();
|
||||
|
||||
_list.push_back(_groupHeaderPrefix + displayedHeader + _groupHeaderSuffix);
|
||||
++curListSize;
|
||||
}
|
||||
|
||||
if (_groupExpanded[groupID]) {
|
||||
for (int *k = _itemsInGroup[groupID].begin(); k != _itemsInGroup[groupID].end(); ++k) {
|
||||
_list.push_back(Common::U32String(_groupsVisible ? " " : "") + _dataList[*k].orig);
|
||||
_listIndex.push_back(*k);
|
||||
++curListSize;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user