Changeset 19 for trunk/Protocol.pas


Ignore:
Timestamp:
Jan 8, 2017, 11:36:18 AM (7 years ago)
Author:
chronos
Message:
  • Modified: Disable assertions for structure size to test 64-bit build.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Protocol.pas

    r17 r19  
    17171717end;
    17181718
     1719procedure InitUnit;
    17191720begin
    1720   assert(sizeof(TPlayerContext) = 2048);
    1721   assert(sizeof(TModel) - 2 * sizeof(LongInt) - 4 * sizeof(word)
     1721  { TODO
     1722  Assert(sizeof(TPlayerContext) = 2048);
     1723  Assert(sizeof(TModel) - 2 * sizeof(LongInt) - 4 * sizeof(word)
    17221724  = sIntSetDevModel and $F * 4);
     1725  }
     1726end;
     1727
     1728initialization
     1729
     1730InitUnit;
    17231731
    17241732end.
Note: See TracChangeset for help on using the changeset viewer.