fix bits check in run_voicemeeter()

patch bump

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

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "voicemeeter-api"
version = "2.5.2"
version = "2.5.3"
description = "A Python wrapper for the Voiceemeter API"
authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT"

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