many changes, mostly for efficiency

This commit is contained in:
ceriel
1988-10-20 13:06:10 +00:00
parent a281cc38a4
commit f69a7e3e5d
18 changed files with 276 additions and 261 deletions

View File

@@ -4,12 +4,12 @@
text2( w)
TWO_BYTES w;
{
if ((_text_cnt -= 2) < 0) mem_text();
#ifdef BYTES_REVERSED
text1( (char) ( ( unsigned short)w>>8));
text1( (char) w);
*text++ = ( unsigned short)w>>8;
*text++ = w;
#else
text1( (char) w);
text1( (char) ( ( unsigned short)w>>8));
*text++ = w;
*text++ = ( unsigned short)w>>8;
#endif
}