mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 01:11:28 +00:00
On Android, remove the counter that automatically proceeds from the startup screen to the main menu and require a button press instead.
git-svn-id: https://svn.eduke32.com/eduke32@4613 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
f4a8cdfa28
commit
0a62ba1a21
1 changed files with 5 additions and 1 deletions
|
@ -10514,7 +10514,11 @@ static void G_DisplayLogo(void)
|
|||
fadepaltile(0,0,0, 63,0,-7,BETASCREEN);
|
||||
totalclock = 0;
|
||||
|
||||
while (/*totalclock < (860+120) && */!I_CheckAllInput())
|
||||
while (
|
||||
#ifndef DROIDMENU
|
||||
totalclock < (860+120) &&
|
||||
#endif
|
||||
!I_CheckAllInput())
|
||||
{
|
||||
clearallviews(0);
|
||||
|
||||
|
|
Loading…
Reference in a new issue