Changeset c3aee8a in buchla-68k for ram/gcurpos.c


Ignore:
Timestamp:
07/09/2017 11:09:17 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
f7428b1
Parents:
411371e
Message:

Make tables unsigned.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/gcurpos.c

    r411371e rc3aee8a  
    5050*/
    5151
    52 static  int16_t ar_ule[] = {            /* upper left even pixel arrow */
     52static  uint16_t        ar_ule[] = {            /* upper left even pixel arrow */
    5353
    5454        AW_F, AW_0, AW_0, AW_0,         /* 0 */
     
    7070};
    7171
    72 static  int16_t ar_ulo[] = {            /* upper left odd pixel arrow */
     72static  uint16_t        ar_ulo[] = {            /* upper left odd pixel arrow */
    7373
    7474        AW_7, AW_8, AW_0, AW_0,         /* 0 */
     
    9494*/
    9595
    96 static  int16_t ar_ure[] = {            /* upper right even pixel arrow */
     96static  uint16_t        ar_ure[] = {            /* upper right even pixel arrow */
    9797
    9898        AW_0, AW_0, AW_1, AW_E,         /* 0 */
     
    114114};
    115115
    116 static  int16_t ar_uro[] = {            /* upper right odd pixel arrow */
     116static  uint16_t        ar_uro[] = {            /* upper right odd pixel arrow */
    117117
    118118        AW_0, AW_0, AW_0, AW_F,         /* 0 */
     
    138138*/
    139139
    140 static  int16_t ar_lle[] = {            /* lower left even pixel arrow */
     140static  uint16_t        ar_lle[] = {            /* lower left even pixel arrow */
    141141
    142142        AW_0, AW_0, AW_0, AW_0,         /* 0 */
     
    158158};
    159159
    160 static  int16_t ar_llo[] = {            /* lower left odd pixel arrow */
     160static  uint16_t        ar_llo[] = {            /* lower left odd pixel arrow */
    161161
    162162        AW_0, AW_0, AW_0, AW_0,         /* 0 */
     
    182182*/
    183183
    184 static  int16_t ar_lre[] = {            /* lower right even pixel arrow */
     184static  uint16_t        ar_lre[] = {            /* lower right even pixel arrow */
    185185
    186186        AW_0, AW_0, AW_0, AW_0,         /* 0 */
     
    202202};
    203203
    204 static  int16_t ar_lro[] = {            /* lower right odd pixel arrow */
     204static  uint16_t        ar_lro[] = {            /* lower right odd pixel arrow */
    205205
    206206        AW_0, AW_0, AW_0, AW_0,         /* 0 */
Note: See TracChangeset for help on using the changeset viewer.