mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-13 13:10:53 +00:00
VOYEUR: change the type of the variable in a for loop
This commit is contained in:
parent
eed0fe1a2d
commit
273304d9ad
@ -1390,7 +1390,7 @@ int ThreadResource::doInterface() {
|
||||
Common::Point(pt.x - MANSION_VIEW_X, pt.y - MANSION_VIEW_Y);
|
||||
regionIndex = -1;
|
||||
|
||||
for (int hotspotIdx = 0; hotspotIdx < (int)hotspots->size(); ++hotspotIdx) {
|
||||
for (uint hotspotIdx = 0; hotspotIdx < hotspots->size(); ++hotspotIdx) {
|
||||
if ((*hotspots)[hotspotIdx].contains(pt)) {
|
||||
// Rect check done
|
||||
for (int arrIndex = 0; arrIndex < 3; ++arrIndex) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user