From 88468d4e52f86af422e34bbc53c49de5f0599693 Mon Sep 17 00:00:00 2001 From: pblivingston <71585805+pblivingston@users.noreply.github.com> Date: Wed, 26 Nov 2025 13:33:14 -0500 Subject: [PATCH] accepted buffers removed 896 from wdm and ks --- README.md | 4 ++-- lib/option.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5db2487..12223c6 100644 --- a/README.md +++ b/README.md @@ -466,8 +466,8 @@ $vmr.Option.sliderMode = $false # sets slider mode to absolute The following Option.buffer commands are available: - mme: int, (441, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) -- wdm: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) -- ks: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) +- wdm: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048) +- ks: int, (128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048) - asio: int, (0, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024) for example: diff --git a/lib/option.ps1 b/lib/option.ps1 index 0526b6f..8b6dc82 100644 --- a/lib/option.ps1 +++ b/lib/option.ps1 @@ -63,7 +63,7 @@ class OptionBuffer : IRemote { } ` { param([int]$arg) - $opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) + $opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048) if ($opts.Contains($arg)) { $this._wdm = $this.Setter('wdm', $arg) } @@ -79,7 +79,7 @@ class OptionBuffer : IRemote { } ` { param([int]$arg) - $opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 896, 1024, 1536, 2048) + $opts = @(128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 441, 448, 480, 512, 576, 640, 704, 768, 1024, 1536, 2048) if ($opts.Contains($arg)) { $this._ks = $this.Setter('ks', $arg) }