K 10 svn:author V 5 danfe K 8 svn:date V 27 2017-03-31T09:13:11.901341Z K 7 svn:log V 706 Make sure `games/cake' runs OK on amd64 (and possibly other 64-bit architectures): - Console::SetFontSize() method calls Console::Recalculate_NLines() which might access ConsoleLines[] array before it is constructed, Recalculate_NLines() is explicitly called after ConsoleLines[] is allocated and populated, so just comment out problematic call in SetFontSize(); it is called only once anyway (the problem did not exhibit itself on i386 for some reason); - The code assumes that sizeof(long) == 4 in too many places, e.g. in on-disk file format layouts and such. Fixing all structures would be too much trouble; instead, simply replace those long's with int's, [un]signed as appropriate. END