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) }