You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Style: Fix statements ending with ';;'
This commit is contained in:
@@ -934,7 +934,7 @@ void VisualServerCanvas::canvas_light_set_shadow_buffer_size(RID p_light, int p_
|
||||
RasterizerCanvas::Light *clight = canvas_light_owner.get(p_light);
|
||||
ERR_FAIL_COND(!clight);
|
||||
|
||||
int new_size = nearest_power_of_2(p_size);;
|
||||
int new_size = nearest_power_of_2(p_size);
|
||||
if (new_size==clight->shadow_buffer_size)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user