mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 18:54:02 +02:00
ardressing coding standard
This commit is contained in:
parent
eb5f6c8eb3
commit
262fdb3c28
1 changed files with 2 additions and 4 deletions
|
@ -350,8 +350,7 @@ void LODManager::setWorldDetailQuality(float quality) {
|
|||
|
||||
if (isHMDMode) {
|
||||
setHMDLODTargetFPS(desiredFPS);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
setDesktopLODTargetFPS(desiredFPS);
|
||||
}
|
||||
|
||||
|
@ -377,8 +376,7 @@ float LODManager::getWorldDetailQuality() const {
|
|||
|
||||
if (percentage <= LOW) {
|
||||
return LOW;
|
||||
}
|
||||
else if (percentage <= MEDIUM) {
|
||||
} else if (percentage <= MEDIUM) {
|
||||
return MEDIUM;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue