osiweb / unified_retro_keyboard

Project to provide keyboard replacements for various classic computers, as well as classic ASCII keyboard
94 stars 12 forks source link

In virtual devices, apply function synchronously to all physical outputs #20

Closed dfnr2 closed 4 years ago

dfnr2 commented 4 years ago

Currently cycles over physical outputs attached to a virtual output, applying the complete selected function to each physical output in sequence. For example, a toggle function will toggle each of the attached physical outputs in sequence.

Instead, apply each phase of the selected function to each physical output, then move to the next phase of the function. This way, the physical outputs are all synchronized.

dfnr2 commented 4 years ago

Done