diff --git a/.gitignore b/.gitignore index c60be9a5f9..b9d8b302da 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ *.exp *.qdact controls.ini +desktop.ini Debug Release Windows/.vs diff --git a/UI/MiscScreens.cpp b/UI/MiscScreens.cpp index ffe61126a0..c35cee1795 100644 --- a/UI/MiscScreens.cpp +++ b/UI/MiscScreens.cpp @@ -585,7 +585,7 @@ UI::EventReturn CreditsScreen::OnDiscord(UI::EventParams &e) { UI::EventReturn CreditsScreen::OnShare(UI::EventParams &e) { auto cr = GetI18NCategory("PSPCredits"); - System_SendMessage("sharetext", cr->T("CheckOutPPSSPP", "Check out PPSSPP, the awesome PSP emulator: http://www.ppsspp.org/")); + System_SendMessage("sharetext", cr->T("CheckOutPPSSPP", "Check out PPSSPP, the awesome PSP emulator: https://www.ppsspp.org/")); return UI::EVENT_DONE; } diff --git a/android/src/org/ppsspp/ppsspp/NativeActivity.java b/android/src/org/ppsspp/ppsspp/NativeActivity.java index 09205d17fe..2a2b986702 100644 --- a/android/src/org/ppsspp/ppsspp/NativeActivity.java +++ b/android/src/org/ppsspp/ppsspp/NativeActivity.java @@ -1307,7 +1307,8 @@ public abstract class NativeActivity extends Activity implements SurfaceHolder.C sendIntent.setType("text/plain"); sendIntent.putExtra(Intent.EXTRA_TEXT, params); sendIntent.setAction(Intent.ACTION_SEND); - startActivity(sendIntent); + Intent shareIntent = Intent.createChooser(sendIntent, null); + startActivity(shareIntent); return true; } catch (Exception e) { // For example, android.content.ActivityNotFoundException Log.e(TAG, e.toString());