Fix a wrong increment.

git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@11 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Joshua Kwan 2003-12-31 00:50:58 +00:00
parent deb0603109
commit 8c5c5aa5f0

View File

@ -226,12 +226,11 @@ inprogressmenu ()
strncpy (m_date, replacestr + 1, 10);
strncpy (m_time, replacestr + 12, 8);
i++;
mvprintw (7 + i, 1, "%c) %-15s %s %s (%ldm %lds idle)",
i + 97, m_name, m_date, m_time,
(time (&ctime) - pstat.st_mtime) / 60,
(time (&ctime) - pstat.st_mtime) % 60);
i++;
}
}
else