mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 04:03:59 +02:00
code review cleanup
This commit is contained in:
parent
436b43ea85
commit
2f6d2469f4
1 changed files with 3 additions and 3 deletions
|
@ -274,15 +274,15 @@ int main(int argc, const char * argv[])
|
|||
|
||||
const char* DEBUG_VIEW_FRUSTUM="--DebugViewFrustum";
|
||||
::debugViewFrustum = cmdOptionExists(argc, argv, DEBUG_VIEW_FRUSTUM);
|
||||
printf("debugViewFrustum=%s\n",(::debugViewFrustum?"yes":"no"));
|
||||
printf("debugViewFrustum=%s\n", (::debugViewFrustum ? "yes" : "no"));
|
||||
|
||||
const char* VIEW_FRUSTUM_CULLING="--ViewFrustumCulling";
|
||||
::viewFrustumCulling = cmdOptionExists(argc, argv, VIEW_FRUSTUM_CULLING);
|
||||
printf("viewFrustumCulling=%s\n",(::viewFrustumCulling?"yes":"no"));
|
||||
printf("viewFrustumCulling=%s\n", (::viewFrustumCulling ? "yes" : "no"));
|
||||
|
||||
const char* WANT_COLOR_RANDOMIZER="--WantColorRandomizer";
|
||||
::wantColorRandomizer = cmdOptionExists(argc, argv, WANT_COLOR_RANDOMIZER);
|
||||
printf("wantColorRandomizer=%s\n",(::wantColorRandomizer?"yes":"no"));
|
||||
printf("wantColorRandomizer=%s\n", (::wantColorRandomizer ? "yes" : "no"));
|
||||
|
||||
// Check to see if the user passed in a command line option for loading a local
|
||||
// Voxel File. If so, load it now.
|
||||
|
|
Loading…
Reference in a new issue