* 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:
Axel Dörfler 2011-10-29 22:19:16 +00:00
parent 7f1880dc0e
commit 4325056b3b
1 changed files with 3 additions and 1 deletions

View File

@ -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 {