mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-03-27 06:12:38 +01:00
Cyclone poll detection problem fixed
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@307 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
@@ -428,5 +428,13 @@ void spend_cycles(int c)
|
||||
usleep(c/200);
|
||||
}
|
||||
|
||||
/* lprintf */
|
||||
void lprintf(const char *fmt, ...)
|
||||
{
|
||||
va_list vl;
|
||||
|
||||
va_start(vl, fmt);
|
||||
vprintf(fmt, vl);
|
||||
va_end(vl);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user