You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Fix various GCC compilation warnings after Vulkan merge
Part of #36132.
This commit is contained in:
@@ -112,8 +112,8 @@ void LightClusterBuilder::bake_cluster() {
|
||||
|
||||
int sx = MAX(0, from_x);
|
||||
int sy = MAX(0, from_y);
|
||||
int dx = MIN(width - 1, to_x);
|
||||
int dy = MIN(height - 1, to_y);
|
||||
int dx = MIN((int)width - 1, to_x);
|
||||
int dy = MIN((int)height - 1, to_y);
|
||||
|
||||
//print_line(itos(j) + " - " + Vector2i(sx, sy) + " -> " + Vector2i(dx, dy));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user