Changeset 9b98b6a in buchla-68k for ram


Ignore:
Timestamp:
11/12/2017 10:27:35 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
861ab45
Parents:
a8c6a0e
Message:

Fixed etavgr.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etavgr.c

    ra8c6a0e r9b98b6a  
    116116        col = stccol - cfetp->flcol;
    117117
    118         ebuf[col] = k + '0';
     118        ebuf[col] = (int8_t)(k + '0');
    119119        ebuf[2] = '\0';
    120120
     
    125125#endif
    126126
    127         dspbuf[0] = k + '0';
     127        dspbuf[0] = (int8_t)(k + '0');
    128128        dspbuf[1] = '\0';
    129129
Note: See TracChangeset for help on using the changeset viewer.