mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 10:14:52 +02:00
fix for drive key clear enumeration
This commit is contained in:
parent
de24842cf0
commit
81758c9df6
1 changed files with 1 additions and 1 deletions
|
@ -1974,7 +1974,7 @@ glm::vec3 MyAvatar::getLaserPointerTipPosition(const PalmData* palm) {
|
|||
}
|
||||
|
||||
void MyAvatar::clearDriveKeys() {
|
||||
for (int i = 0; i < sizeof(_driveKeys); i++) {
|
||||
for (int i = 0; i < MAX_DRIVE_KEYS; i++) {
|
||||
_driveKeys[i] = 0.0f;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue