Changeset 7258c6a in buchla-68k for vlib/vhinit.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/vhinit.c

    r0292fbb r7258c6a  
    2222#define VREG(h,v)       ((h<<10)|v)
    2323
    24 extern  int     cgtable[][256];
    25 extern  int     cg_rows;
     24extern  int16_t cgtable[][256];
     25extern  int16_t cg_rows;
    2626
    2727struct octent   v_obtab[16];    /* object control table */
     
    2929struct octent   *v_curob;       /* current v_obtab pointer */
    3030
    31 int     v_nobj;                 /* current object number */
    32 int     v_obpri;                /* current object priority */
     31int16_t v_nobj;                 /* current object number */
     32int16_t v_obpri;                /* current object priority */
    3333
    3434/*
     
    3737/* initialized variables */
    3838
    39 int     vr_data[] = {
     39int16_t vr_data[] = {
    4040
    4141        0x825B,         /* R0  -- Mode word 0 */
Note: See TracChangeset for help on using the changeset viewer.