mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
Improve intro timing a tiny bit on WinCE
svn-id: r10472
This commit is contained in:
parent
17bf7b95aa
commit
6c94765972
@ -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;
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user