Fix some allignment issues noticed in github
This commit is contained in:
parent
793e72df42
commit
ad23066976
1 changed files with 23 additions and 29 deletions
|
@ -330,15 +330,9 @@ int main( int argc, char **argv )
|
|||
WSAStartup( 0x202, &wsaData );
|
||||
#elif defined( ANDROID )
|
||||
int hasperm = AndroidHasPermissions( "READ_EXTERNAL_STORAGE" );
|
||||
if ( !hasperm )
|
||||
{
|
||||
AndroidRequestAppPermissions( "READ_EXTERNAL_STORAGE" );
|
||||
}
|
||||
int haspermInternet = AndroidHasPermissions( "INTERNET" );
|
||||
if ( !haspermInternet )
|
||||
{
|
||||
AndroidRequestAppPermissions( "INTERNET" );
|
||||
}
|
||||
if ( !hasperm ) AndroidRequestAppPermissions( "READ_EXTERNAL_STORAGE" );
|
||||
if ( !haspermInternet ) AndroidRequestAppPermissions( "INTERNET" );
|
||||
#else
|
||||
// Linux
|
||||
#endif
|
||||
|
@ -351,9 +345,9 @@ int main( int argc, char **argv )
|
|||
// Initialize Rawdraw
|
||||
int frames = 0;
|
||||
double ThisTime;
|
||||
double SecToWait;
|
||||
double LastFPSTime = OGGetAbsoluteTime();
|
||||
double LastFrameTime = OGGetAbsoluteTime();
|
||||
double SecToWait;
|
||||
CNFGBGColor = 0x800000;
|
||||
CNFGDialogColor = 0x444444;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue