Changeset a95b757 in buchla-68k for ram


Ignore:
Timestamp:
11/12/2017 10:25:02 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
7c0efb6
Parents:
6bbd779
Message:

Fixed etivce.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etivce.c

    r6bbd779 ra95b757  
    8585
    8686        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    87         ebuf[ec] = k + '0';
     87        ebuf[ec] = (int8_t)(k + '0');
    8888        ebuf[2] = '\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.