mirror of
https://github.com/paxed/dgamelaunch.git
synced 2025-07-27 23:54:25 +02:00
Fix a wrong increment.
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@11 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
parent
deb0603109
commit
8c5c5aa5f0
@ -226,12 +226,11 @@ inprogressmenu ()
|
|||||||
strncpy (m_date, replacestr + 1, 10);
|
strncpy (m_date, replacestr + 1, 10);
|
||||||
strncpy (m_time, replacestr + 12, 8);
|
strncpy (m_time, replacestr + 12, 8);
|
||||||
|
|
||||||
i++;
|
|
||||||
|
|
||||||
mvprintw (7 + i, 1, "%c) %-15s %s %s (%ldm %lds idle)",
|
mvprintw (7 + i, 1, "%c) %-15s %s %s (%ldm %lds idle)",
|
||||||
i + 97, m_name, m_date, m_time,
|
i + 97, m_name, m_date, m_time,
|
||||||
(time (&ctime) - pstat.st_mtime) / 60,
|
(time (&ctime) - pstat.st_mtime) / 60,
|
||||||
(time (&ctime) - pstat.st_mtime) % 60);
|
(time (&ctime) - pstat.st_mtime) % 60);
|
||||||
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user