Changeset 7258c6a in buchla-68k for vlib/vspray4.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vspray4.c

    r0292fbb r7258c6a  
    99#include "vsddsw.h"
    1010
    11 static  char cl[81];
     11static  int8_t cl[81];
    1212
    1313/*
     
    3030*/
    3131
    32 void vspray4(unsigned *vobj, short vwid, short fg, short vb, short pitch, char *ml[])
     32void vspray4(uint16_t *vobj, int16_t vwid, int16_t fg, int16_t vb, int16_t pitch, int8_t *ml[])
    3333{
    34         register char *cp, *lp, c;
    35         register short j, k, row;
     34        register int8_t *cp, *lp, c;
     35        register int16_t j, k, row;
    3636
    3737        row = 0;
Note: See TracChangeset for help on using the changeset viewer.