mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-09 04:16:34 +00:00
BLADERUNNER: Fix -Wsign-compare warning
This commit is contained in:
parent
44b022aec4
commit
d8820de8b0
@ -376,7 +376,7 @@ void KIASectionCrimes::populateSuspects() {
|
||||
void KIASectionCrimes::populateVisibleClues() {
|
||||
_cluesScrollBox->clearLines();
|
||||
if (_crimeSelected != -1) {
|
||||
for (uint i = 0; i < kClueCount; ++i) {
|
||||
for (int i = 0; i < kClueCount; ++i) {
|
||||
int clueId = i;
|
||||
if (_vm->_crimesDatabase->getAssetType(clueId) != -1
|
||||
&& _vm->_crimesDatabase->getCrime(clueId) == _crimeSelected
|
||||
|
Loading…
x
Reference in New Issue
Block a user