FluidSCWrapper: Add missing newline to error message so it appears at the correct moment

nix
Owen Green 6 years ago
parent 1aaf244efb
commit 3660089bcf

@ -631,7 +631,7 @@ public:
p.template setParameterValues<ControlSetter>(verbose, world, inputs); p.template setParameterValues<ControlSetter>(verbose, world, inputs);
if (constrain)p.constrainParameterValues(); if (constrain)p.constrainParameterValues();
} else { } else {
std::cout << "ERROR: " << getName() << ": parameter count mismatch. Perhaps your binary plugins and SC sources are different versions"; std::cout << "ERROR: " << getName() << ": parameter count mismatch. Perhaps your binary plugins and SC sources are different versions\n";
//TODO: work out how to bring any further work to a halt //TODO: work out how to bring any further work to a halt
} }
return p; return p;

Loading…
Cancel
Save