Skip to content
Snippets Groups Projects
Verified Commit d20e4137 authored by Tobias Frisch's avatar Tobias Frisch
Browse files

[#79] Changed weird char* to uint8_t... sounds reasonable

parent 4bf44605
No related branches found
No related tags found
1 merge request!69Resolve "Rework Asset Loader API"
Pipeline #26863 passed
...@@ -101,7 +101,7 @@ struct Texture { ...@@ -101,7 +101,7 @@ struct Texture {
union { int height; int h; }; union { int height; int h; };
int channels; int channels;
std::vector<char*> data; // binary data of the decoded texture std::vector<uint8_t> data; // binary data of the decoded texture
}; };
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment