Fixed bug in command line version where no config was loaded and nothing happened.

This commit is contained in:
Gordon McCann 2021-12-14 15:56:36 -05:00
parent a904f8c0f2
commit f942ad87c0

View File

@ -26,7 +26,8 @@ int main(int argc, char** argv)
*/
EVBApp theBuilder;
return 1;
theBuilder.ReadConfigFile(filename);
Stopwatch timer;
timer.Start();