No newline after render (#3158)

This commit is contained in:
Oskar Wallgren
2016-12-16 18:13:15 +01:00
committed by GitHub
parent e1c598ba21
commit 1f3947408d

View File

@@ -909,5 +909,11 @@ int main( int argc, char * * argv )
// cleanup memory managers
MemoryManager::cleanup();
// ProjectRenderer::updateConsoleProgress() doesn't return line after render
if( coreOnly )
{
printf( "\n" );
}
return ret;
}