* 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:
parent
7f1880dc0e
commit
4325056b3b
@ -316,9 +316,11 @@ main(int argc, char** argv)
|
||||
c = getchar();
|
||||
if (c != -1)
|
||||
break;
|
||||
|
||||
snooze(10000);
|
||||
}
|
||||
|
||||
if (c != '\n' && c != 'y')
|
||||
if (c != '\n' && tolower(c) != 'y')
|
||||
screenMode.Revert();
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user