diff options
author | Ben Connors <benconnors@outlook.com> | 2019-11-08 17:08:02 -0500 |
---|---|---|
committer | Ben Connors <benconnors@outlook.com> | 2019-11-08 17:08:02 -0500 |
commit | 1884a5197fbdf98bdaebafe2b25e3a7181967e30 (patch) | |
tree | f52cf449c61296970427570e2995a3dacdf5b3db /interface/__main__.py | |
parent | 1f037f48e5badab2b758c4b9bd0541c5ccda7b3f (diff) |
Move to OLA rendering; bugfix
- Chaser.advance not using proper audio ID
- Add OLA renderer as main one
Diffstat (limited to 'interface/__main__.py')
-rw-r--r-- | interface/__main__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface/__main__.py b/interface/__main__.py index 64b47cd..712b746 100644 --- a/interface/__main__.py +++ b/interface/__main__.py @@ -3,9 +3,9 @@ import os import sys from .interface import Interface -from .dummy import DummyOutput +from .ola import OLAOutput if len(sys.argv) > 2: raise ValueError("Usage: %s [workspace file]" % sys.argv[0]) -Interface(sys.argv[1] if len(sys.argv) == 2 else None, DummyOutput()).main() +Interface(sys.argv[1] if len(sys.argv) == 2 else None, OLAOutput()).main() |