tvg_loader: Fixed missing 'this->' keyword

Fixed missed 'this->' in tvgTvgLoader.cpp
This commit is contained in:
Michal Maciola 2021-06-11 15:55:24 +02:00 committed by Hermet Park
parent 4795927dc1
commit 8123250f52

View file

@ -88,8 +88,8 @@ bool TvgLoader::open(const char *data, uint32_t size)
{
//TODO: verify memory leak if open() is called multiple times.
pointer = data;
size = size;
this->pointer = data;
this->size = size;
//FIXME: verify TVG format here.
@ -124,4 +124,4 @@ unique_ptr<Scene> TvgLoader::scene()
this->done();
if (root) return move(root);
return nullptr;
}
}