This commit is contained in:
Andrzej Kapolka 2014-09-11 14:15:51 -07:00
commit b731a234c2

View file

@ -1974,7 +1974,7 @@ glm::vec3 MyAvatar::getLaserPointerTipPosition(const PalmData* palm) {
} }
void MyAvatar::clearDriveKeys() { void MyAvatar::clearDriveKeys() {
for (int i = 0; i < sizeof(_driveKeys); i++) { for (int i = 0; i < MAX_DRIVE_KEYS; ++i) {
_driveKeys[i] = 0.0f; _driveKeys[i] = 0.0f;
} }
} }