| 1416 | } |
| 1417 | |
| 1418 | RESTORE_WARNING_UNREACHABLE_CODE |
| 1419 | |
| 1420 | /* return the level of the dungeon this ledgerno exists in */ |
| 1421 | xint16 |
| 1422 | ledger_to_dlev(xint16 ledgerno) |
| 1423 | { |
| 1424 | return (xint16) (ledgerno |
| 1425 | - svd.dungeons[ledger_to_dnum(ledgerno)].ledger_start); |
| 1426 | } |
| 1427 | |
| 1428 | /* returns the depth of a level, in floors below the surface |
| 1429 | (note levels in different dungeons can have the same depth) */ |
no test coverage detected