Changeset 33b5477 in buchla-68k for vlib/vputs.c


Ignore:
Timestamp:
07/14/2017 12:36:45 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
298f0b4
Parents:
928d5d9
Message:

Fixed argument order.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vputs.c

    r928d5d9 r33b5477  
    2323*/
    2424
    25 void vputs(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t attrib, int8_t *str)
     25void vputs(uint16_t *sbase, uint16_t row, uint16_t col, int8_t *str, uint16_t attrib)
    2626{
    2727        uint16_t        c;
     
    5353*/
    5454
    55 void vputsa(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t *attrib, int8_t *str)
     55void vputsa(uint16_t *sbase, uint16_t row, uint16_t col, int8_t *str, uint16_t *attrib)
    5656{
    5757        uint16_t        c;
Note: See TracChangeset for help on using the changeset viewer.