Changeset 7258c6a in buchla-68k for include/vsdd.h


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
  • include/vsdd.h

    r0292fbb r7258c6a  
    5555struct octent {                 /* Object control table entry */
    5656
    57         unsigned int    ysize,  /* Height of object in pixels */
     57        uint16_t        ysize,  /* Height of object in pixels */
    5858                        xsize;  /* Width of object in pixels */
    5959
    60         int             objx,   /* Object x location */
     60        int16_t         objx,   /* Object x location */
    6161                        objy;   /* Object y location */
    6262
    63         unsigned int    *obase; /* Base of object data */
     63        uint16_t        *obase; /* Base of object data */
    6464
    65         char            opri,   /* Current object priority */
     65        int8_t          opri,   /* Current object priority */
    6666                        obank;  /* Object bank 0..3 */
    6767
    68         unsigned int    odtw0,  /* Object descriptor table word 0 */
     68        uint16_t        odtw0,  /* Object descriptor table word 0 */
    6969                        odtw1;  /* Object descriptor table word 1 */
    7070};
Note: See TracChangeset for help on using the changeset viewer.