many modyfications in search for more speed

This commit is contained in:
ceriel
1988-10-31 15:42:15 +00:00
parent 63f793aff3
commit 7851ff900f
19 changed files with 208 additions and 134 deletions

View File

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