Merge pull request #111806 from Calinou/renderer-message-warnings

Make all unsupported renderer message features consistently warnings
This commit is contained in:
Rémi Verschelde 2025-12-02 14:15:43 +01:00
commit c87dd8e02b
No known key found for this signature in database
GPG key ID: C3336907360768E1
12 changed files with 47 additions and 31 deletions

View file

@ -566,7 +566,7 @@ void ProjectDialog::ok_pressed() {
project_features.push_back("Mobile");
} else if (renderer_type == "gl_compatibility") {
project_features.push_back("GL Compatibility");
// Also change the default rendering method for the mobile override.
// Also change the default renderer for the mobile override.
initial_settings["rendering/renderer/rendering_method.mobile"] = "gl_compatibility";
} else {
WARN_PRINT("Unknown renderer type. Please report this as a bug on GitHub.");