--Bug fixes

-Text output of command line programs was not being flushed.
This commit is contained in:
Person 2021-04-22 13:21:29 -06:00
parent e64dd6c67d
commit 6a6e2f3dde
3 changed files with 6 additions and 0 deletions

View File

@ -611,6 +611,8 @@ int _tmain(int argc, _TCHAR* argv[])
else
#endif
b = EmberAnimate<float>(argc, argv, opt);
cout << std::flush;
}
return b ? 0 : 1;

View File

@ -878,6 +878,8 @@ int _tmain(int argc, _TCHAR* argv[])
else
#endif
b = EmberGenome<float>(argc, argv, opt);
cout << std::flush;
}
return b ? 0 : 1;

View File

@ -487,6 +487,8 @@ int _tmain(int argc, _TCHAR* argv[])
else
#endif
b = EmberRender<float>(argc, argv, opt);
cout << std::flush;
}
return b ? 0 : 1;