From b10b157d9eda5acde2e997ad5aff49a0501cc998 Mon Sep 17 00:00:00 2001 From: NotNik <32980656+Not-Nik@users.noreply.github.com> Date: Fri, 9 Oct 2020 12:32:20 +0200 Subject: [PATCH] Second GenImageGradientV -> GenImageGradientH --- lib/raylib-zig.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/raylib-zig.zig b/lib/raylib-zig.zig index 3824569..61d1adc 100755 --- a/lib/raylib-zig.zig +++ b/lib/raylib-zig.zig @@ -132,8 +132,8 @@ pub const Image = extern struct { return GenImageGradientV(width, height, top, bottom); } - pub fn GenGradientV(width: c_int, height: c_int, left: Color, right: Color) Image { - return GenImageGradientV(width, height, left, right); + pub fn GenGradientH(width: c_int, height: c_int, left: Color, right: Color) Image { + return GenImageGradientH(width, height, left, right); } pub fn GenGradientRadial(width: c_int, height: c_int, density: f32, inner: Color, outer: Color) Image {