Skip to content

Commit

Permalink
Remove unexpected tab.
Browse files Browse the repository at this point in the history
How did it slip in? It came from e081c28,
but I can only see the extra tab in Git blame...
It is not visible from here:
e081c28
  • Loading branch information
Zylann committed Oct 3, 2023
1 parent 81fbfff commit ab72c6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func _export() -> bool:
for y in float_heightmap.get_height():
for x in float_heightmap.get_width():
var h := int((float_heightmap.get_pixel(x, y).r - height_min) * hscale)
f.store_16(clampi(h, 0, 65535))
f.store_16(clampi(h, 0, 65535))

elif format == FORMAT_R32:
var hscale := 4294967295.0 / (height_max - height_min)
Expand Down

0 comments on commit ab72c6f

Please sign in to comment.