fix bits check in run_voicemeeter()

patch bump

Issue #10
This commit is contained in:
2024-01-26 17:34:00 +00:00
parent 94a0e6770c
commit a0d657468b
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ class Remote(CBindings):
def run_voicemeeter(self, kind_id: str) -> None:
if kind_id not in (kind.name.lower() for kind in KindId):
raise VMError(f"Unexpected Voicemeeter type: '{kind_id}'")
if kind_id == "potato" and bits == 8:
if kind_id == "potato" and bits == 64:
value = KindId[kind_id.upper()].value + 3
else:
value = KindId[kind_id.upper()].value