Skip to content

Commit

Permalink
Fixed a bug in SVGA driver
Browse files Browse the repository at this point in the history
  • Loading branch information
zdimension committed Jun 17, 2015
1 parent 9b2a1fd commit 0720ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Cosmos.HAL/Drivers/PCI/Video/VMWareSVGAII.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private enum Capability

public VMWareSVGAII()
{
device = (PCIDeviceNormal)(PCI.GetDevice(0x15AD, 0x0405));
device = (PCIDeviceNormal)(Cosmos.HAL.PCI.GetDevice(0x15AD, 0x0405));
device.EnableMemory(true);
uint basePort = device.BaseAddresses[0].BaseAddress();
IndexPort = new IOPort((ushort)(basePort + (uint)IOPortOffset.Index));
Expand Down

0 comments on commit 0720ca7

Please sign in to comment.