update just the status lines' 'time' field */
| 1282 | |
| 1283 | /* update just the status lines' 'time' field */ |
| 1284 | staticfn void |
| 1285 | stat_update_time(void) |
| 1286 | { |
| 1287 | int idx = gn.now_or_before_idx; /* no 0/1 toggle */ |
| 1288 | int fld = BL_TIME; |
| 1289 | |
| 1290 | /* Time (moves) */ |
| 1291 | gb.blstats[idx][fld].a.a_long = svm.moves; |
| 1292 | gv.valset[fld] = FALSE; |
| 1293 | |
| 1294 | eval_notify_windowport_field(fld, gv.valset, idx); |
| 1295 | if ((windowprocs.wincap2 & WC2_FLUSH_STATUS) != 0L) |
| 1296 | status_update(BL_FLUSH, (genericptr_t) 0, 0, 0, |
| 1297 | NO_COLOR, (unsigned long *) 0); |
| 1298 | return; |
| 1299 | } |
| 1300 | |
| 1301 | /* deal with player's choice to change processing of a condition */ |
| 1302 | void |
no test coverage detected