home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / xgalaga-2_0_tar.gz / xgalaga-2_0_tar / xgalaga-2.0 / libsprite / scale.c < prev    next >
C/C++ Source or Header  |  1998-04-12  |  292b  |  18 lines

  1. #include "allincludes.h"
  2.  
  3. void
  4. W_TranslatePoints(window, x, y)
  5.     int    *x, *y;
  6.     W_Window window;
  7. {
  8.     struct window *win;
  9.     win = W_Void2Window(window);
  10.  
  11.     if (win->type == WIN_TEXT) {
  12.     *y = (*y - MENU_PAD) / W_Textheight;
  13.     *x = (*x - MENU_PAD) / W_Textwidth;
  14.     }
  15.     return;
  16. }
  17.  
  18.