Changeset 9738a78 in buchla-68k


Ignore:
Timestamp:
11/12/2017 09:26:19 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
2370d81
Parents:
cdb0f36
Message:

Fixed etatab.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etatab.c

    rcdb0f36 r9738a78  
    7373                vbank(0);
    7474
    75         vcputsv(asgob, 64, (asgmod ? exp_c(AK_MODC) : adbox[n][4]), adbox[n][5],
     75        vcputsv(asgob, 64, (asgmod ? AK_MODC : adbox[n][4]), adbox[n][5],
    7676                cfetp->frow, cfetp->flcol, dspbuf, 14);
    7777
     
    9494        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    9595
    96         ebuf[ec] = k + '0';
     96        ebuf[ec] = (int8_t)(k + '0');
    9797        ebuf[2] = '\0';
    9898
    99         dspbuf[0] = k + '0';
     99        dspbuf[0] = (int8_t)(k + '0');
    100100        dspbuf[1] = '\0';
    101101
Note: See TracChangeset for help on using the changeset viewer.