Changeset d235320 in buchla-68k


Ignore:
Timestamp:
11/12/2017 10:22:18 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
202bf8c
Parents:
6ab7550
Message:

Fixed etwhar.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etwhar.c

    r6ab7550 rd235320  
    8484        n = nn & 0xFF;
    8585        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    86         ebuf[ec] = k + '0';
     86        ebuf[ec] = (int8_t)(k + '0');
    8787        ebuf[2] = '\0';
    8888
    89         dspbuf[0] = k + '0';
     89        dspbuf[0] = (int8_t)(k + '0');
    9090        dspbuf[1] = '\0';
    9191
Note: See TracChangeset for help on using the changeset viewer.