diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-08-05 15:21:42 +0200 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2018-08-05 15:21:42 +0200 |
commit | f3e01e3a318fea8d7065468df09e32c1765bfef8 (patch) | |
tree | 8840f61192ba65b92912405940f948755305af2e /src/RendererSectionData.cpp | |
parent | Removed previous implementation of texture atlas (diff) | |
download | AltCraft-f3e01e3a318fea8d7065468df09e32c1765bfef8.tar AltCraft-f3e01e3a318fea8d7065468df09e32c1765bfef8.tar.gz AltCraft-f3e01e3a318fea8d7065468df09e32c1765bfef8.tar.bz2 AltCraft-f3e01e3a318fea8d7065468df09e32c1765bfef8.tar.lz AltCraft-f3e01e3a318fea8d7065468df09e32c1765bfef8.tar.xz AltCraft-f3e01e3a318fea8d7065468df09e32c1765bfef8.tar.zst AltCraft-f3e01e3a318fea8d7065468df09e32c1765bfef8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/RendererSectionData.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RendererSectionData.cpp b/src/RendererSectionData.cpp index fb2135a..d066141 100644 --- a/src/RendererSectionData.cpp +++ b/src/RendererSectionData.cpp @@ -59,7 +59,7 @@ const BlockModel* GetInternalBlockModel(const BlockId& id, std::vector<std::pair if (it.first == id) return it.second; } - idModels.push_back(std::make_pair(id, AssetManager::Instance().GetBlockModelByBlockId(id))); + idModels.push_back(std::make_pair(id, AssetManager::GetBlockModelByBlockId(id))); return idModels.back().second; } |