Fix build

This commit is contained in:
a1batross 2016-12-10 01:27:05 +03:00
parent f13b1e246b
commit cd038a1125
1 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ public class LauncherActivity extends Activity {
argv = argv + " -noch"; argv = argv + " -noch";
if( mFirstTime ) if( mFirstTime )
argv = argv + " -firsttime"; argv = argv + " -firsttime umu"; // pass argument, because xash have a bug related to client's CheckParm
Intent intent = new Intent(); Intent intent = new Intent();
intent.setAction("in.celest.xash3d.START"); intent.setAction("in.celest.xash3d.START");
@ -221,7 +221,7 @@ public class LauncherActivity extends Activity {
// TODO: must be less dumb someday... // TODO: must be less dumb someday...
builder.setTitle( R.string.first_run_reminder_title ) builder.setTitle( R.string.first_run_reminder_title )
.setMessage( R.string.first_run_reminder_msg ) .setMessage( R.string.first_run_reminder_msg )
.setPositiveButton( R.string.ok, .setNeutralButton( R.string.ok, new DialogInterface.OnClickListener() { public void onClick( DialogInterface dialog, int which ) { } } )
.show(); .show();
} }