Changeset 8aad29e in buchla-68k for ram


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

Fixed etwvce.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etwvce.c

    r7b25450 r8aad29e  
    8383        n = nn & 0xFF;
    8484        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    85         ebuf[ec] = k + '0';
     85        ebuf[ec] = (int8_t)(k + '0');
    8686        ebuf[2] = '\0';
    8787
    88         dspbuf[0] = k + '0';
     88        dspbuf[0] = (int8_t)(k + '0');
    8989        dspbuf[1] = '\0';
    9090
Note: See TracChangeset for help on using the changeset viewer.