mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
Add banners on the top of settings pages, if editing game-specific settings show the icon.
This commit is contained in:
+2
-3
@@ -446,9 +446,8 @@ void System_Vibrate(int length_ms) {
|
||||
length_ms = 25;
|
||||
}
|
||||
|
||||
void System_LaunchUrl(LaunchUrlType urlType, const char *url)
|
||||
{
|
||||
QDesktopServices::openUrl(QUrl(url));
|
||||
void System_LaunchUrl(LaunchUrlType urlType, std::string_view url) {
|
||||
QDesktopServices::openUrl(QUrl(std::string(url).c_str()));
|
||||
}
|
||||
|
||||
AudioBackend *System_CreateAudioBackend() {
|
||||
|
||||
Reference in New Issue
Block a user