get rid of spurious warning on Microsoft compiler
This commit is contained in:
@@ -1798,6 +1798,8 @@ wiz_mon_diff(void)
|
|||||||
}
|
}
|
||||||
#endif /* (NH_DEVEL_STATUS != NH_STATUS_RELEASED) || defined(DEBUG) */
|
#endif /* (NH_DEVEL_STATUS != NH_STATUS_RELEASED) || defined(DEBUG) */
|
||||||
|
|
||||||
|
DISABLE_WARNING_UNREACHABLE_CODE
|
||||||
|
|
||||||
/* #migratemons command */
|
/* #migratemons command */
|
||||||
int
|
int
|
||||||
wiz_migrate_mons(void)
|
wiz_migrate_mons(void)
|
||||||
@@ -1839,7 +1841,6 @@ wiz_migrate_mons(void)
|
|||||||
mcount = 0;
|
mcount = 0;
|
||||||
else if (mcount > ((COLNO - 1) * ROWNO))
|
else if (mcount > ((COLNO - 1) * ROWNO))
|
||||||
mcount = (COLNO - 1) * ROWNO;
|
mcount = (COLNO - 1) * ROWNO;
|
||||||
|
|
||||||
while (mcount > 0) {
|
while (mcount > 0) {
|
||||||
if (!use_existing_map_mon) {
|
if (!use_existing_map_mon) {
|
||||||
ptr = rndmonst();
|
ptr = rndmonst();
|
||||||
@@ -1848,7 +1849,7 @@ wiz_migrate_mons(void)
|
|||||||
migrate_to_level(mtmp, ledger_no(&tolevel), MIGR_RANDOM,
|
migrate_to_level(mtmp, ledger_no(&tolevel), MIGR_RANDOM,
|
||||||
(coord *) 0);
|
(coord *) 0);
|
||||||
} else {
|
} else {
|
||||||
struct monst *nextmon;
|
struct monst *nextmon = (struct monst *) 0;
|
||||||
|
|
||||||
for (mtmp = fmon; mtmp; mtmp = nextmon) {
|
for (mtmp = fmon; mtmp; mtmp = nextmon) {
|
||||||
nextmon = mtmp->nmon;
|
nextmon = mtmp->nmon;
|
||||||
@@ -1862,6 +1863,7 @@ wiz_migrate_mons(void)
|
|||||||
#endif /* DEBUG_MIGRATING_MONS */
|
#endif /* DEBUG_MIGRATING_MONS */
|
||||||
return ECMD_OK;
|
return ECMD_OK;
|
||||||
}
|
}
|
||||||
|
RESTORE_WARNING_UNREACHABLE_CODE
|
||||||
|
|
||||||
/* #wizcustom command to see glyphmap customizations */
|
/* #wizcustom command to see glyphmap customizations */
|
||||||
int
|
int
|
||||||
|
|||||||
Reference in New Issue
Block a user