MADS: Silence GCC signed/unsigned warnings
This commit is contained in:
parent
d23e493b46
commit
b03d46ceeb
1 changed files with 2 additions and 2 deletions
|
@ -182,9 +182,9 @@ void SequenceList::remove(int seqIndex) {
|
|||
}
|
||||
|
||||
int SequenceList::findByTrigger(int trigger) {
|
||||
for (int idx = 0; idx < _entries.size(); ++idx) {
|
||||
for (uint idx = 0; idx < _entries.size(); ++idx) {
|
||||
if (_entries[idx]._active) {
|
||||
for (uint subIdx = 0; subIdx < _entries[idx]._entries._count; ++subIdx) {
|
||||
for (int subIdx = 0; subIdx < _entries[idx]._entries._count; ++subIdx) {
|
||||
if (_entries[idx]._entries._trigger[subIdx] == trigger)
|
||||
return idx;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue