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

    r0292fbb r7258c6a  
    44*/
    55
    6 short   BBase   = 9;            /* bottom line of bar graph */
    7 short   BCenter = 32;           /* center line of bar graph */
    8 short   BTop    = 53;           /* top line of bar graph */
    9 short   BOffset = 128;          /* data offset for centered-zero bars */
     6int16_t BBase   = 9;            /* bottom line of bar graph */
     7int16_t BCenter = 32;           /* center line of bar graph */
     8int16_t BTop    = 53;           /* top line of bar graph */
     9int16_t BOffset = 128;          /* data offset for centered-zero bars */
    1010
    11 short   BarBLn[128] = {         /* bottom-zero bar lines */
     11int16_t BarBLn[128] = {         /* bottom-zero bar lines */
    1212
    1313         9, 10, 10, 11, 11, 11, 12, 12, 12, 13, 13, 13, 14, 14, 14, 15,
     
    2121};
    2222
    23 short   BarCLn[256] = {         /* centered-zero bar lines */
     23int16_t BarCLn[256] = {         /* centered-zero bar lines */
    2424
    2525         9,  9,  9,  9,  9, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11,
Note: See TracChangeset for help on using the changeset viewer.