Add banners on the top of settings pages, if editing game-specific settings show the icon.

This commit is contained in:
Henrik Rydgård
2025-11-06 17:59:06 +01:00
parent b6850eb26e
commit 6d1973edfb
38 changed files with 294 additions and 122 deletions
+2 -3
View File
@@ -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() {