1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 04:29:01 +00:00
cc65/libsrc/geos/common/sleep.c
izydorst c40519859a retouch ('coz I'm not sure if it is in the head)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2334 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-08-15 22:19:32 +00:00

24 lines
265 B
C

/*
* sleep.c
*
* Maciej 'YTM/Elysium' Witkowiak, 16.08.2003
*
*/
#include <geos.h>
unsigned __fastcall__ sleep (unsigned wait)
{
char typ;
if ( (get_tv()) & TV_NTSC ) {
typ = 60;
} else {
typ = 50;
}
Sleep(wait*typ);
return 0;
}