diff options
author | chotaire <chotaire@chotaire.net> | 2019-09-07 15:32:58 +0200 |
---|---|---|
committer | chotaire <chotaire@chotaire.net> | 2019-09-07 15:32:58 +0200 |
commit | c47dbd153c6cbd134e4e24e3fb9912ced8b65861 (patch) | |
tree | 67408bebf810aa5cf2007bb7d46ba7dbf4a6d674 /js/phpvirtualbox.js | |
parent | 9871f2445fa8c2095cacc93a8708cc4adc495198 (diff) | |
download | phpvirtualbox-c47dbd153c6cbd134e4e24e3fb9912ced8b65861.zip phpvirtualbox-c47dbd153c6cbd134e4e24e3fb9912ced8b65861.tar.gz phpvirtualbox-c47dbd153c6cbd134e4e24e3fb9912ced8b65861.tar.bz2 |
Fix SCSI maxPortCount to 15 (by pasha1st)
Diffstat (limited to 'js/phpvirtualbox.js')
-rw-r--r-- | js/phpvirtualbox.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/phpvirtualbox.js b/js/phpvirtualbox.js index 19fd02e..145706a 100644 --- a/js/phpvirtualbox.js +++ b/js/phpvirtualbox.js @@ -4838,7 +4838,7 @@ var vboxStorage = { }, SCSI: { - maxPortCount: 16, + maxPortCount: 15, maxDevicesPerPortCount: 1, driveTypes: ['dvd','disk'], types: ['LsiLogic','BusLogic'], |