mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-13 07:14:59 +00:00
MADS: Silence GCC signed/unsigned warnings
This commit is contained in:
parent
d23e493b46
commit
b03d46ceeb
@ -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…
x
Reference in New Issue
Block a user