Changeset 7ecfb7b in buchla-68k for ram/etscor.c


Ignore:
Timestamp:
07/14/2017 09:11:47 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
aa021e2
Parents:
4810254
Message:

Unused variables and parameters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etscor.c

    r4810254 r7ecfb7b  
    1616int16_t et_scor(int16_t n)
    1717{
     18        (void)n;
     19
    1820        sprintf(ebuf, "%02.2d", curscor + 1);
    1921        ebflag = TRUE;
     
    3133{
    3234        register int16_t ival;
     35
     36        (void)n;
    3337
    3438        ebuf[2] = '\0';
     
    5963int16_t rd_scor(int16_t n)
    6064{
     65        (void)n;
     66
    6167        sprintf(dspbuf, "%02.2d", curscor + 1);
    6268
     
    7985        register int16_t ec;
    8086
     87        (void)n;
     88
    8189        ec = stccol - cfetp->flcol;
    8290        ebuf[ec]  = k + '0';
Note: See TracChangeset for help on using the changeset viewer.