mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 05:00:06 -05:00
--Bug fixes
-Text output of command line programs was not being flushed.
This commit is contained in:
parent
e64dd6c67d
commit
6a6e2f3dde
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user