mirror of
https://github.com/Ryujinx/SDL.git
synced 2025-01-10 16:35:31 +00:00
Fixed upper case button in alert dialog for not loaded libraries on Android.
This is more consistent with the buttons of other dialogs on Android.
This commit is contained in:
parent
d4bdd2469f
commit
4a67627e8b
|
@ -124,7 +124,7 @@ public class SDLActivity extends Activity {
|
||||||
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
|
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
|
||||||
dlgAlert.setMessage("An error occurred while trying to start the application. Please try again and/or reinstall.");
|
dlgAlert.setMessage("An error occurred while trying to start the application. Please try again and/or reinstall.");
|
||||||
dlgAlert.setTitle("SDL Error");
|
dlgAlert.setTitle("SDL Error");
|
||||||
dlgAlert.setPositiveButton("EXIT",
|
dlgAlert.setPositiveButton("Exit",
|
||||||
new DialogInterface.OnClickListener() {
|
new DialogInterface.OnClickListener() {
|
||||||
public void onClick(DialogInterface dialog,int id) {
|
public void onClick(DialogInterface dialog,int id) {
|
||||||
// if this button is clicked, close current activity
|
// if this button is clicked, close current activity
|
||||||
|
|
Loading…
Reference in a new issue