Changeset 7ecfb7b in buchla-68k for ram/scselbx.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/scselbx.c

    r4810254 r7ecfb7b  
    146146void svtdsp(uint16_t *obj, uint16_t fg, uint16_t bg, int16_t row, int16_t col, int8_t *buf)
    147147{
     148        (void)fg;
     149        (void)bg;
     150
    148151        if (v_regs[5] & 0x0180)
    149152                vbank(0);
     
    363366void sdmtxt(int16_t row, int16_t col, int8_t *txt, int16_t tag)
    364367{
     368        (void)tag;
     369
    365370        if ((v_regs[5] & 0x0180) NE 0x0100)
    366371                vbank(1);
     
    464469void scmenu(int16_t n)
    465470{
    466         register int16_t i;
    467471        register struct octent *op;
    468472
     
    10281032int16_t sdboxfn(int16_t n)
    10291033{
    1030         register int16_t        row, col, grp, what, i;
     1034        register int16_t        row, col, i;
    10311035        register struct s_entry *ep;
    10321036        int16_t atr, modewas;
     1037
     1038        (void)n;
    10331039
    10341040        row = hitcy / 14;
Note: See TracChangeset for help on using the changeset viewer.