mirror of
https://github.com/overte-org/overte.git
synced 2025-04-24 12:13:36 +02:00
Fixed windows compiler warning
This commit is contained in:
parent
18c5ebce9e
commit
71634b4c8d
1 changed files with 1 additions and 1 deletions
|
@ -700,7 +700,7 @@ void ApplicationOverlay::renderPointersOculus(const glm::vec3& eyePos) {
|
|||
MyAvatar* myAvatar = application->getAvatar();
|
||||
|
||||
//Controller Pointers
|
||||
for (int i = 0; i < myAvatar->getHand()->getNumPalms(); i++) {
|
||||
for (size_t i = 0; i < myAvatar->getHand()->getNumPalms(); i++) {
|
||||
|
||||
PalmData& palm = myAvatar->getHand()->getPalms()[i];
|
||||
if (palm.isActive()) {
|
||||
|
|
Loading…
Reference in a new issue