Browse Source

* TVESAinfo.str changed to pFarChar

git-svn-id: trunk@25679 -
nickysn 12 years ago
parent
commit
53d50f68c6
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/graph/src/msdos/vesah.inc

+ 2 - 1
packages/graph/src/msdos/vesah.inc

@@ -16,6 +16,7 @@
 
 
 TYPE
+  pFarChar = ^char;far;
 
   pModeList = ^tModeList;far;
   tModeList = Array [0..255] of word; {list of modes terminated by -1}
@@ -24,7 +25,7 @@ TYPE
   TVESAinfo = packed record  { VESA Information request }
     signature : array [1..4] of char;     { This should be VESA   }
     version   : word;                     { VESA revision         }
-    str       : pChar;                    { pointer to OEM string }
+    str       : pFarChar;                 { pointer to OEM string }
     caps      : longint;                  { video capabilities    }
     modeList  : pModeList;                { pointer to SVGA modes }
 (*    pad       : array [18..260] of byte;  { extra padding more then   }