mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-29 13:59:55 +02:00
don't return void
This commit is contained in:
parent
9d21c3d549
commit
49f2724608
1 changed files with 1 additions and 1 deletions
|
@ -1482,7 +1482,7 @@ void EntityItem::updateAngularVelocityFromNetwork(const glm::vec3& value) {
|
|||
if (shouldSuppressLocationEdits()) {
|
||||
return;
|
||||
}
|
||||
return updateAngularVelocity(value);
|
||||
updateAngularVelocity(value);
|
||||
}
|
||||
|
||||
void EntityItem::updateAngularDamping(float value) {
|
||||
|
|
Loading…
Reference in a new issue