Mercurial > minori
diff src/include/session.h @ 8:b1f73678ef61
update
text paragraphs are now their own objects, as they should be
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 26 Aug 2023 03:39:34 -0400 |
parents | 07a9095eaeed |
children |
line wrap: on
line diff
--- a/src/include/session.h Thu Aug 24 23:11:38 2023 -0400 +++ b/src/include/session.h Sat Aug 26 03:39:34 2023 -0400 @@ -6,7 +6,7 @@ struct Session { Config config; Session() { timer.start(); } - int uptime() { return timer.nsecsElapsed() / 1000; } + int uptime() { return timer.elapsed(); } private: QElapsedTimer timer; };