Fix intended get_height call in mat_maker_gd.

This commit is contained in:
Relintai 2021-12-14 00:47:00 +01:00
parent 562d010aa8
commit 9f6e8e1aa5

View File

@ -37,7 +37,7 @@ func render_image(material) -> Image:
image.lock()
var w : float = image.get_width()
var h : float = image.get_width()
var h : float = image.get_height()
var pseed : float = randf() + randi()