Changeset 3c45656 in buchla-68k for ram/m7menu.c


Ignore:
Timestamp:
11/15/2017 08:17:05 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
0b23063
Parents:
8d0af8a
Message:

Fixed constant overflow warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/m7menu.c

    r8d0af8a r3c45656  
    2424static int8_t   ml01[61], ml02[61], ml03[61], ml04[61], ml05[61];
    2525
    26 static int8_t mlc01[] = {1, 0xBA,  58, 0xB1,  1, 0xBB,  -1};
    27 static int8_t mlc02[] = {1, 0xB6,  29, 0xB1,  1, 0xB7,  28, 0xB1,  1, 0xB4,  -1};
    28 static int8_t mlc03[] = {1, 0xB6,  29, 0xB1,  1, 0xB2,  28, 0xB1,  1, 0xB4,  -1};
    29 static int8_t mlc04[] = {1, 0xB6,  29, 0xB1,  1, 0xB5,  28, 0xB1,  1, 0xB4,  -1};
    30 static int8_t mlc05[] = {1, 0xB9,  58, 0xB1,  1, 0xB8,  -1};
     26static int8_t mlc01[] = {1, (int8_t)0xBA,  58, (int8_t)0xB1,  1, (int8_t)0xBB,  -1};
     27static int8_t mlc02[] = {1, (int8_t)0xB6,  29, (int8_t)0xB1,  1, (int8_t)0xB7,  28, (int8_t)0xB1,  1, (int8_t)0xB4,  -1};
     28static int8_t mlc03[] = {1, (int8_t)0xB6,  29, (int8_t)0xB1,  1, (int8_t)0xB2,  28, (int8_t)0xB1,  1, (int8_t)0xB4,  -1};
     29static int8_t mlc04[] = {1, (int8_t)0xB6,  29, (int8_t)0xB1,  1, (int8_t)0xB5,  28, (int8_t)0xB1,  1, (int8_t)0xB4,  -1};
     30static int8_t mlc05[] = {1, (int8_t)0xB9,  58, (int8_t)0xB1,  1, (int8_t)0xB8,  -1};
    3131
    3232static int8_t   *mtexts[] = {
Note: See TracChangeset for help on using the changeset viewer.