diff options
Diffstat (limited to 'src/render/render.cc')
-rw-r--r-- | src/render/render.cc | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/render/render.cc b/src/render/render.cc index 794d777..bf14e7d 100644 --- a/src/render/render.cc +++ b/src/render/render.cc @@ -154,9 +154,13 @@ void unload() globe->set_texture_id(0); } if (globe->corona_id()) { - render::Textures::unload("textures/corona/" + globe->coronaname()); + render::Textures::unload("textures/" + globe->coronaname()); globe->set_corona_id(0); } + if (globe->rings_id()) { + render::Textures::unload("textures/" + globe->ringsname()); + globe->set_rings_id(0); + } } if (ext_render(entity)) { @@ -182,9 +186,13 @@ void clear() globe->set_texture_id(0); } if (globe->corona_id()) { - render::Textures::unload("textures/corona/" + globe->coronaname()); + render::Textures::unload("textures/" + globe->coronaname()); globe->set_corona_id(0); } + if (globe->rings_id()) { + render::Textures::unload("textures/" + globe->ringsname()); + globe->set_rings_id(0); + } } if (ext_render(entity)) { |