Changeset 31e3c81 in buchla-68k


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

Fixed etwpnt.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etwpnt.c

    rc0cb375 r31e3c81  
    8585        n = nn & 0xFF;
    8686        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    87         ebuf[ec] = k + '0';
     87        ebuf[ec] = (int8_t)(k + '0');
    8888        ebuf[3] = '\0';
    8989
    90         dspbuf[0] = k + '0';
     90        dspbuf[0] = (int8_t)(k + '0');
    9191        dspbuf[1] = '\0';
    9292
Note: See TracChangeset for help on using the changeset viewer.