mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-03 08:51:30 +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()) {
|
if (shouldSuppressLocationEdits()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
return updateAngularVelocity(value);
|
updateAngularVelocity(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
void EntityItem::updateAngularDamping(float value) {
|
void EntityItem::updateAngularDamping(float value) {
|
||||||
|
|
Loading…
Reference in a new issue