HomeSort by: relevance | last modified time | path
    Searched defs:saved_time (Results 1 - 1 of 1) sorted by relevancy

  /src/games/rogue/
save.c 177 struct rogue_time saved_time, mod_time; local in function:restore
241 r_read(fp, &saved_time, sizeof(saved_time));
250 if (has_been_touched(&saved_time, &mod_time)) {
403 has_been_touched(const struct rogue_time *saved_time,
406 if (saved_time->year < mod_time->year) {
408 } else if (saved_time->year > mod_time->year) {
411 if (saved_time->month < mod_time->month) {
413 } else if (saved_time->month > mod_time->month) {
416 if (saved_time->day < mod_time->day)
    [all...]

Completed in 11 milliseconds