From d76fafda675b010688e618edbefb3b35f5cc62e5 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 25 Mar 2013 16:45:49 -0700 Subject: [PATCH] remove call that included getCmdOption --- interface/src/main.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/interface/src/main.cpp b/interface/src/main.cpp index d4bd0e3f6f..8b78cf69eb 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -973,14 +973,6 @@ int main(int argc, char** argv) printf( "Initialized Display.\n" ); init(); - - // Check to see if the user passed in a command line option for loading a local - // Voxel File. If so, load it now. - char* voxelsFilename = getCmdOption(argv, argv + argc, "-i"); - if (voxelsFilename) - { - voxels.loadVoxelsFile(voxelsFilename); - } // create thread for receipt of data via UDP pthread_create(&networkReceiveThread, NULL, networkReceive, NULL);