You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +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:
@@ -4211,7 +4211,7 @@ void SpatialEditor::set_state(const Dictionary &p_state) {
|
||||
Array vp = d["viewports"];
|
||||
uint32_t vp_size = static_cast<uint32_t>(vp.size());
|
||||
if (vp_size > VIEWPORTS_COUNT) {
|
||||
WARN_PRINT("Ignoring superfluous viewport settings from spatial editor state.")
|
||||
WARN_PRINT("Ignoring superfluous viewport settings from spatial editor state.");
|
||||
vp_size = VIEWPORTS_COUNT;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user