* Busy looping without sleeping isn't so nice.
* Also allow upper case Y to please Michael :-) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42987 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -316,9 +316,11 @@ main(int argc, char** argv)
|
|||||||
c = getchar();
|
c = getchar();
|
||||||
if (c != -1)
|
if (c != -1)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
snooze(10000);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c != '\n' && c != 'y')
|
if (c != '\n' && tolower(c) != 'y')
|
||||||
screenMode.Revert();
|
screenMode.Revert();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user