Changeset 7258c6a in buchla-68k for ram/select.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/select.c

    r0292fbb r7258c6a  
    1717#endif
    1818
    19 extern  short   cxval, cyval, astat;
     19extern  int16_t cxval, cyval, astat;
    2020
    21 extern  short   cursbox;                /* currently selected box */
    22 extern  short   hitbox;                 /* box we just hit */
    23 extern  short   hitcx, hitcy;           /* x,y of cursor when we hit the box */
     21extern  int16_t cursbox;                /* currently selected box */
     22extern  int16_t hitbox;                 /* box we just hit */
     23extern  int16_t hitcx, hitcy;           /* x,y of cursor when we hit the box */
    2424
    2525extern  struct  selbox  *csbp;          /* current select box table pointer */
     
    3636*/
    3737
    38 short whatbox(void)
     38int16_t whatbox(void)
    3939{
    4040        register struct selbox *sb;
Note: See TracChangeset for help on using the changeset viewer.