Skip to content

Commit 063e06f

Browse files
author
Thomas Ibanez
committed
remove data free in texture...
1 parent 2ea7169 commit 063e06f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ICE/Assets/include/Texture.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Texture : public Asset {
2121
public:
2222
virtual ~Texture() {
2323
if (data_ != nullptr) {
24-
stbi_image_free(data_);
24+
//stbi_image_free(data_); TODO: Might need need free-ing
2525
data_ = nullptr;
2626
}
2727
}

0 commit comments

Comments
 (0)