From 2f6d2469f472c136ddda839fb1ff9a112c7e07dd Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Mon, 22 Apr 2013 15:13:17 -0700 Subject: [PATCH] code review cleanup --- voxel-server/src/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/voxel-server/src/main.cpp b/voxel-server/src/main.cpp index bacd253d88..127cd36792 100644 --- a/voxel-server/src/main.cpp +++ b/voxel-server/src/main.cpp @@ -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.