Skip to content
Snippets Groups Projects
Commit dcfe9f9c authored by pospelov's avatar pospelov
Browse files

Fix in graphics engine which was kind of running in batch mode

parent 815fc822
No related branches found
No related tags found
No related merge requests found
...@@ -50,9 +50,9 @@ int main(int argc, char **argv) ...@@ -50,9 +50,9 @@ int main(int argc, char **argv)
if( !command_line_options.isConsistent() ) return 0; if( !command_line_options.isConsistent() ) return 0;
// holding graphics if it exists // holding graphics if it exists
if( gApplication ) { if( theApp ) {
std::cout << "main() -> Info. Holding graphics, press ctrl-C to exit..." << std::endl; std::cout << "main() -> Info. Holding graphics, press ctrl-C to exit..." << std::endl;
gApplication->Run(); theApp->Run();
} }
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment