hedgewars/uUtils.pas
changeset 14080 af203fb307a7
parent 14072 e54f9a85ccba
child 14892 444ed0622348
--- a/hedgewars/uUtils.pas	Fri Nov 02 14:33:05 2018 +0100
+++ b/hedgewars/uUtils.pas	Fri Nov 02 15:48:58 2018 +0100
@@ -264,7 +264,7 @@
     i:= Pos(e, a);
     if (i > 1) and (a[i - 1] = '\') then
         begin
-        a[i]:= $1B; // ASCII ESC
+        a[i]:= Char($1B); // ASCII ESC
         Delete(a, i - 1, 1);
         end
     else
@@ -278,7 +278,7 @@
 var i: LongInt;
 begin
 repeat
-    i:= Pos($1B, a); // ASCII ESC
+    i:= Pos(Char($1B), a); // ASCII ESC
     if (i > 0) then
         begin
         a[i]:= e;