home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / FSGFX.ZIP / G_DOTERS.C < prev    next >
C/C++ Source or Header  |  1990-03-06  |  267b  |  18 lines

  1. /* g_doters.c */
  2. /* erase a graphics dot */
  3.  
  4. #include "mygraph.h"
  5.  
  6. int g_doters(x,y)
  7. int x;
  8. int y;
  9. {
  10.     int spot;
  11.     unsigned char uchar;
  12.  
  13.     spot = (80 * y) + (x/8);
  14.     uchar = (0x80 >> (x % 8)) ^ 0xff; 
  15.     *(pchscreen+spot) = *(pchscreen+spot) & uchar; 
  16. }
  17.  
  18.