bugfix graphics controller win
This commit is contained in:
parent
12153fd9f0
commit
2801402c0e
@ -99,6 +99,7 @@ Other changes
|
|||||||
|
|
||||||
| Version | Date | Comment |
|
| Version | Date | Comment |
|
||||||
| -------------- | -------------- | -------- |
|
| -------------- | -------------- | -------- |
|
||||||
|
| 3.33.4 | 2017-11-09 | bugfix graphics controller win (bytes) |
|
||||||
| 3.33.3 | 2017-11-08 | bugfix cpu speed arm - type |
|
| 3.33.3 | 2017-11-08 | bugfix cpu speed arm - type |
|
||||||
| 3.33.2 | 2017-11-08 | bugfix cpu speed arm |
|
| 3.33.2 | 2017-11-08 | bugfix cpu speed arm |
|
||||||
| 3.33.1 | 2017-11-07 | improved bios and main board information |
|
| 3.33.1 | 2017-11-07 | improved bios and main board information |
|
||||||
|
|||||||
@ -365,7 +365,7 @@ function graphics(callback) {
|
|||||||
model: util.getValue(lines, 'name', '='),
|
model: util.getValue(lines, 'name', '='),
|
||||||
vendor: util.getValue(lines, 'AdapterCompatibility', '='),
|
vendor: util.getValue(lines, 'AdapterCompatibility', '='),
|
||||||
bus: util.getValue(lines, 'PNPDeviceID', '=').startsWith('PCI') ? 'PCI' : '',
|
bus: util.getValue(lines, 'PNPDeviceID', '=').startsWith('PCI') ? 'PCI' : '',
|
||||||
vram: util.getValue(lines, 'AdapterRAM', '='),
|
vram: parseInt(util.getValue(lines, 'AdapterRAM', '='), 10) / 1024 / 1024,
|
||||||
vramDynamic: (util.getValue(lines, 'VideoMemoryType', '=') === '2')
|
vramDynamic: (util.getValue(lines, 'VideoMemoryType', '=') === '2')
|
||||||
});
|
});
|
||||||
_resolutionx = toInt(util.getValue(lines, 'CurrentHorizontalResolution', '='));
|
_resolutionx = toInt(util.getValue(lines, 'CurrentHorizontalResolution', '='));
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user