From d20e41371078a985faffc92bb5e3839d5de32d4a Mon Sep 17 00:00:00 2001
From: Tobias Frisch <tfrisch@uni-koblenz.de>
Date: Sun, 22 Aug 2021 15:36:06 +0200
Subject: [PATCH] [#79] Changed weird char* to uint8_t... sounds reasonable

Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de>
---
 modules/asset_loader/include/vkcv/asset/asset_loader.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/asset_loader/include/vkcv/asset/asset_loader.hpp b/modules/asset_loader/include/vkcv/asset/asset_loader.hpp
index 51ebb3b6..25d7d5b3 100644
--- a/modules/asset_loader/include/vkcv/asset/asset_loader.hpp
+++ b/modules/asset_loader/include/vkcv/asset/asset_loader.hpp
@@ -101,7 +101,7 @@ struct Texture {
 	union { int height; int h; };
 	int channels;
 	
-	std::vector<char*> data;	// binary data of the decoded texture
+	std::vector<uint8_t> data;	// binary data of the decoded texture
 };
 
 /**
-- 
GitLab