Browse Source

* Fixed unicode reference from word to widechar

marco 24 years ago
parent
commit
63548ec70f
1 changed files with 6 additions and 3 deletions
  1. 6 3
      rtl/win32/crt.pp

+ 6 - 3
rtl/win32/crt.pp

@@ -524,7 +524,7 @@ var
   DestCoor: TCoord;
   CharInfo: TCharInfo;
 begin
-  CharInfo.UnicodeChar := 32;
+  CharInfo.UnicodeChar := #32;
   CharInfo.Attributes := TextAttr;
 
   Y := (WindMinY - 1) + (Y - 1) + 1;
@@ -561,7 +561,7 @@ var
 begin
   GetScreenCursor(X, Y);
 
-  CharInfo.UnicodeChar := 32;
+  CharInfo.UnicodeChar := #32;
   CharInfo.Attributes := TextAttr;
 
   SrcRect.Top := Y - 1;
@@ -835,7 +835,10 @@ end. { unit Crt }
 
 {
   $Log$
-  Revision 1.11  2001-07-13 17:43:25  peter
+  Revision 1.12  2001-07-30 15:00:54  marco
+   * Fixed unicode reference from word to widechar
+
+  Revision 1.11  2001/07/13 17:43:25  peter
     * updates from Tomas Schatzl so it works better with w2k virtual
       consoles