RCS file: /cvsroot/ivan/ivan/Main/Include/proto.h,v
retrieving revision 1.68
diff -r1.68 proto.h
114,115c114,115
< int Type = 0;
< SaveFile >> (ushort&)Type;
---
> ushort Type = 0;
> SaveFile >> Type;
Newer versions of GCC compile with -fstrict-aliasing, which causes the code above to be optimized improperly. My guess is that this problem may pop up other places too, so it might just be simpler to compile with -fno-strict-aliasing.