Changeset 7258c6a in buchla-68k for ram/etires.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/etires.c

    r0292fbb r7258c6a  
    1818#include "instdsp.h"
    1919
    20 extern  unsigned        *instob;
     20extern  uint16_t        *instob;
    2121
    22 extern  short   stcrow, stccol, curvce, curfunc;
     22extern  int16_t stcrow, stccol, curvce, curfunc;
    2323
    24 extern  short   idbox[][8];
     24extern  int16_t idbox[][8];
    2525
    26 extern  char    dspbuf[];
     26extern  int8_t  dspbuf[];
    2727
    2828extern  struct  instdef vbufs[];
     
    3030extern  struct  instpnt *pntptr;
    3131
    32 short   rsntab[] = {            /* resonance table */
     32int16_t rsntab[] = {            /* resonance table */
    3333
    3434        0,              /* 0 =  0.00 */
     
    5454*/
    5555
    56 short et_ires(short n)
     56int16_t et_ires(int16_t n)
    5757{
    5858        if (curfunc NE 4)
     
    7171*/
    7272
    73 short ef_ires(short n)
     73int16_t ef_ires(int16_t n)
    7474{
    75         register short tmpval;
     75        register int16_t tmpval;
    7676
    7777        if (curfunc NE 4)
     
    9797*/
    9898
    99 short rd_ires(short n)
     99int16_t rd_ires(int16_t n)
    100100{
    101101        register struct idfnhdr *fp;
     
    128128*/
    129129
    130 short nd_ires(short n, short k)
     130int16_t nd_ires(int16_t n, int16_t k)
    131131{
    132132        if (curfunc NE 4)
Note: See TracChangeset for help on using the changeset viewer.