Browse Source

- rm the hexstr function from the graph unit, as that has already been included
in the system unit

git-svn-id: trunk@25677 -

nickysn 12 years ago
parent
commit
98913dc7d5
2 changed files with 0 additions and 28 deletions
  1. 0 14
      packages/graph/src/go32v2/vesa.inc
  2. 0 14
      packages/graph/src/msdos/vesa.inc

+ 0 - 14
packages/graph/src/go32v2/vesa.inc

@@ -76,20 +76,6 @@ var
 
   ScanLines: word;        { maximum number of scan lines for mode }
 
-function hexstr(val : longint;cnt : byte) : string;
-const
-  HexTbl : array[0..15] of char='0123456789ABCDEF';
-var
-  i : longint;
-begin
-  hexstr[0]:=char(cnt);
-  for i:=cnt downto 1 do
-   begin
-     hexstr[i]:=hextbl[val and $f];
-     val:=val shr 4;
-   end;
-end;
-
 
 {$IFDEF DPMI}
 

+ 0 - 14
packages/graph/src/msdos/vesa.inc

@@ -76,20 +76,6 @@ var
 
   ScanLines: word;        { maximum number of scan lines for mode }
 
-function hexstr(val : longint;cnt : byte) : string;
-const
-  HexTbl : array[0..15] of char='0123456789ABCDEF';
-var
-  i : longint;
-begin
-  hexstr[0]:=char(cnt);
-  for i:=cnt downto 1 do
-   begin
-     hexstr[i]:=hextbl[val and $f];
-     val:=val shr 4;
-   end;
-end;
-
 
 {$IFDEF DPMI}