Changeset 7258c6a in buchla-68k for include/asgdsp.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/asgdsp.h

    r0292fbb r7258c6a  
    1010struct  asgent  {       /* assignment table library entry structure */
    1111
    12         short   a_mop;                  /* MIDI output port */
    13         short   a_tun;                  /* tuning table number */
     12        int16_t a_mop;                  /* MIDI output port */
     13        int16_t a_tun;                  /* tuning table number */
    1414
    15         short   a_aux;                  /* auxiliary control state */
    16         short   a_intn;                 /* intensity */
    17         short   a_rate;                 /* rate */
    18         short   a_dpth;                 /* depth */
     15        int16_t a_aux;                  /* auxiliary control state */
     16        int16_t a_intn;                 /* intensity */
     17        int16_t a_rate;                 /* rate */
     18        int16_t a_dpth;                 /* depth */
    1919
    20         short   a_i2grp[12];            /* instrument to group table */
    21         short   a_gpdyn[12];            /* group dynamics table */
     20        int16_t a_i2grp[12];            /* instrument to group table */
     21        int16_t a_gpdyn[12];            /* group dynamics table */
    2222
    23         short   a_v2grp[12];            /* voice to group table */
    24         short   a_mctln[4];             /* MIDI controller number table */
    25         short   a_g2prt[12][2];         /* group to port and channel table */
    26         short   a_k2grp[88];            /* port 1 key to group assigment table */
     23        int16_t a_v2grp[12];            /* voice to group table */
     24        int16_t a_mctln[4];             /* MIDI controller number table */
     25        int16_t a_g2prt[12][2];         /* group to port and channel table */
     26        int16_t a_k2grp[88];            /* port 1 key to group assigment table */
    2727
    28         char    a_name[16];             /* assignment table name */
     28        int8_t  a_name[16];             /* assignment table name */
    2929};
    3030
Note: See TracChangeset for help on using the changeset viewer.