Changeset 58ff1a9 in buchla-68k


Ignore:
Timestamp:
11/15/2017 07:51:33 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8d0af8a
Parents:
00c31a2
Message:

Fixed pointer signedness.

Location:
ram
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ram/ptdisp.c

    r00c31a2 r58ff1a9  
    5959{
    6060        register int16_t i, j;
    61         int16_t atrbuf[64];
     61        uint16_t atrbuf[64];
    6262        int8_t  linbuf[66];
    6363
  • ram/scordsp.c

    r00c31a2 r58ff1a9  
    387387void dsclk(void)
    388388{
    389         int16_t atr[26];
     389        uint16_t        atr[26];
    390390
    391391        uclk();
     
    576576void dsrpmod(void)
    577577{
    578         int16_t atr[25];
     578        uint16_t        atr[25];
    579579
    580580        switch (sliders) {
     
    633633void dsimode(void)
    634634{
    635         int16_t atr[7];
     635        uint16_t        atr[7];
    636636
    637637        if (ndisp NE 2)
  • ram/sqdisp.c

    r00c31a2 r58ff1a9  
    306306{
    307307        register int16_t i;
    308         int16_t atrbuf[64];
     308        uint16_t atrbuf[64];
    309309        int8_t  linbuf[66];
    310310
Note: See TracChangeset for help on using the changeset viewer.