From a2f3644e87c11c222f86aa2aeb0e31d858ebb024 Mon Sep 17 00:00:00 2001
From: Alexey <AlexeyAB@users.noreply.github.com>
Date: Sat, 21 Apr 2018 20:56:46 +0000
Subject: [PATCH] Merge pull request #675 from IlyaOvodov/Flip_Fix

---
 src/image.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/image.h b/src/image.h
index 7145997..24b8684 100644
--- a/src/image.h
+++ b/src/image.h
@@ -9,8 +9,8 @@
 #include "box.h"
 
 typedef struct {
-    int h;
-    int w;
+	int w;
+	int h;
     int c;
     float *data;
 } image;

--
Gitblit v1.10.0