mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
fix sign warning
This commit is contained in:
parent
8034538f41
commit
b9bca46c6b
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ PalmData& HandData::addNewPalm() {
|
|||
const PalmData* HandData::getPalm(int sixSenseID) const {
|
||||
// the palms are not necessarily added in left-right order,
|
||||
// so we have to search for the right SixSenseID
|
||||
for (int i = 0; i < _palms.size(); i++) {
|
||||
for (unsigned int i = 0; i < _palms.size(); i++) {
|
||||
const PalmData* palm = &(_palms[i]);
|
||||
if (palm->getSixenseID() == sixSenseID) {
|
||||
return palm->isActive() ? palm : NULL;
|
||||
|
|
Loading…
Reference in a new issue