Improve intro timing a tiny bit on WinCE

svn-id: r10472
This commit is contained in:
Nicolas Bacca 2003-09-28 22:23:59 +00:00
parent 17bf7b95aa
commit 6c94765972
2 changed files with 6 additions and 0 deletions

View File

@ -1702,6 +1702,9 @@ void SkyControl::delay(unsigned int amount) {
}
uint this_delay = 20; // 1?
#ifdef _WIN32_WCE
this_delay = 10;
#endif
if (this_delay > amount)
this_delay = amount;

View File

@ -465,6 +465,9 @@ void SkyState::delay(uint amount) { //copied and mutilated from Simon.cpp
{
uint this_delay = 20; // 1?
#ifdef _WIN32_WCE
this_delay = 10;
#endif
if (this_delay > amount)
this_delay = amount;
_system->delay_msecs(this_delay);