mirror of
https://github.com/BernardoGiordano/Checkpoint
synced 2024-11-15 06:07:06 +00:00
fix #82
This commit is contained in:
parent
cb5b22c1b2
commit
0769be3524
3 changed files with 4 additions and 2 deletions
|
@ -35,6 +35,8 @@
|
|||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
#define FASTSCROLL_WAIT 1.25e8
|
||||
|
||||
namespace DateTime
|
||||
{
|
||||
std::string timeStr(void);
|
||||
|
|
|
@ -156,7 +156,7 @@ void hbkbd::hid(size_t& currentEntry)
|
|||
|
||||
if (sleep)
|
||||
{
|
||||
svcSleepThread(1e8);
|
||||
svcSleepThread(FASTSCROLL_WAIT);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -186,6 +186,6 @@ void hid::index(size_t& currentEntry, int& page, size_t maxpages, size_t maxentr
|
|||
|
||||
if (sleep)
|
||||
{
|
||||
svcSleepThread(1e8);
|
||||
svcSleepThread(FASTSCROLL_WAIT);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue