Changeset 5c4721b in buchla-68k for vlib/glcinit.c


Ignore:
Timestamp:
09/04/2017 12:00:08 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8c8b4e5
Parents:
23e1597
Message:

Fixed integer width.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/glcinit.c

    r23e1597 r5c4721b  
    4747#include "ram.h"
    4848
    49 int32_t         lcdbase;        /* LCD graphics base address */
     49int16_t         lcdbase;        /* LCD graphics base address */
    5050int16_t         lcdbit;         /* LCD graphics pixel bit mask */
    5151int16_t         lcdcol;         /* LCD text column */
    5252int16_t         lcdctl1;        /* LCD display control -- command */
    5353int16_t         lcdctl2;        /* LCD display control -- data */
    54 int32_t         lcdcurs;        /* LCD graphics pixel byte address */
     54int16_t         lcdcurs;        /* LCD graphics pixel byte address */
    5555int16_t         lcdrow;         /* LCD text row */
    5656int16_t         lcdx;           /* LCD graphics x */
     
    203203int16_t GLCcxy(int16_t x, int16_t y)
    204204{
    205         register int32_t curad, xby6;
     205        register int16_t curad, xby6;
    206206
    207207        /* calculate cursor address */
Note: See TracChangeset for help on using the changeset viewer.