ReadChar() calls now Global.Sleep

This commit is contained in:
ralfkronemeyer_cp 2008-06-25 21:51:58 +00:00
parent 4a4744082b
commit 8bd4438678

View file

@ -260,7 +260,9 @@ namespace Cosmos.Hardware {
CheckInit();
char xResult = '\0';
while (mBuffer.Count == 0 || !GetCharValue(mBuffer.Dequeue(), out xResult))
;
{
Global.Sleep(10); //ToDo optimize value
}
return xResult;
}
}