Browse Source

* Fixed executable size limit for wince.

git-svn-id: trunk@11482 -
yury 17 years ago
parent
commit
4cb3fef484
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/ogcoff.pas

+ 1 - 1
compiler/ogcoff.pas

@@ -1923,7 +1923,7 @@ const pemagic : array[0..3] of byte = (
           MaxMemPos:=$FFFFFFFF
         else
           if target_info.system in system_wince then
-            MaxMemPos:=$1FFFFF
+            MaxMemPos:=$1FFFFFF
           else
             MaxMemPos:=$7FFFFFFF;
       end;