Changeset bc1afe0 in buchla-68k for ram


Ignore:
Timestamp:
11/12/2017 10:30:17 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
e15f784
Parents:
ca9ec00
Message:

Fixed etaprg.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etaprg.c

    rca9ec00 rbc1afe0  
    9292        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    9393
    94         ebuf[ec] = k + '0';
     94        ebuf[ec] = (int8_t)(k + '0');
    9595        ebuf[2] = '\0';
    9696
    97         dspbuf[0] = k + '0';
     97        dspbuf[0] = (int8_t)(k + '0');
    9898        dspbuf[1] = '\0';
    9999
Note: See TracChangeset for help on using the changeset viewer.