used, unused variables

some variables marked as unused, are now actually used
some unused variables are eliminated or commented out
This commit is contained in:
nhmall
2024-03-16 12:53:58 -04:00
parent cad4d87101
commit 295d6e257c
10 changed files with 24 additions and 21 deletions

View File

@@ -1370,7 +1370,7 @@ evaluate_and_notify_windowport(
boolean *valsetlist,
int idx)
{
int i, fld, updated = 0, notpresent UNUSED = 0;
int i, fld, updated = 0;
/*
* Now pass the changed values to window port.
@@ -1384,7 +1384,6 @@ evaluate_and_notify_windowport(
|| ((fld == BL_XP || i == BL_EXP) && Upolyd)
|| ((fld == BL_VERS) && !flags.showvers)
) {
notpresent++;
continue;
}
if (eval_notify_windowport_field(fld, valsetlist, idx))