1
0
espelhamento de https://bitbucket.org/mfeemster/fractorium.git sincronizado 2026-03-14 05:40:34 -04:00
-Text output of command line programs was not being flushed.
Esse commit está contido em:
Person
2021-04-22 13:21:29 -06:00
commit 6a6e2f3dde
3 arquivos alterados com 6 adições e 0 exclusões

Ver arquivo

@ -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;

Ver arquivo

@ -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;

Ver arquivo

@ -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;