Changeset b28c09e in buchla-68k for ram/asgvce.c


Ignore:
Timestamp:
11/15/2017 09:13:05 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
b27040e
Parents:
e68b406
Message:

Avoid shadowing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/asgvce.c

    re68b406 rb28c09e  
    303303        register int16_t vp;
    304304        register int16_t trg;
    305         register int16_t aflag;
     305        register int16_t flag;
    306306
    307307        DB_ENTR("asgvce");
     
    337337
    338338                if (tv EQ -1)
    339                         aflag = TRUE;           /* OK - unassigned */
     339                        flag = TRUE;            /* OK - unassigned */
    340340                else if (0 EQ (tv & (MKEYHELD << 8)))
    341                         aflag = TRUE;           /* OK - not held */
     341                        flag = TRUE;            /* OK - not held */
    342342                else
    343                         aflag = FALSE;          /* NO - held */
    344 
    345                 if (aflag AND (vce2grp[vp] EQ (grp + 1))) {
     343                        flag = FALSE;           /* NO - held */
     344
     345                if (flag AND (vce2grp[vp] EQ (grp + 1))) {
    346346
    347347                        if ((ins2grp[grp] & GTAG1) AND
Note: See TracChangeset for help on using the changeset viewer.