Mute Input in Standalone latest commit issue

Can you change the default to:

std::atomic<bool> muteInput { true };

otherwise you get feedback until the value is detected when you start your Standalone app.

Rail

1 Like

Any style guidelines on:

if (muteInput)

vs

if (muteInput.load())

for an atomic_bool?

Rail

Thanks, I’ve added this in 388e422.