mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 11:36:27 +02:00
Merge pull request #3397 from birarda/fix-stuck-drive-key
fix for MyAvatar save crash
This commit is contained in:
commit
afef42509d
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