mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-21 06:26:38 +00:00
Fix error macro calls not ending with semicolon
It's not necessary, but the vast majority of calls of error macros do have an ending semicolon, so it's best to be consistent. Most WARN_DEPRECATED calls did *not* have a semicolon, but there's no reason for them to be treated differently.
This commit is contained in:
@@ -790,7 +790,7 @@ class EditorExportPlatformAndroid : public EditorExportPlatform {
|
||||
|
||||
if (tname == "manifest" && attrname == "versionName") {
|
||||
if (attr_value == 0xFFFFFFFF) {
|
||||
WARN_PRINT("Version name in a resource, should be plaintext")
|
||||
WARN_PRINT("Version name in a resource, should be plain text");
|
||||
} else
|
||||
string_table.write[attr_value] = version_name;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user