diff options
author | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2017-08-07 17:08:15 +0200 |
---|---|---|
committer | LaG1924 <12997935+LaG1924@users.noreply.github.com> | 2017-08-07 17:08:15 +0200 |
commit | 8b275c0b0a1064a813ef14a109b64e1fce461893 (patch) | |
tree | 7bb1cc13d2eb9be2a344b4cd35f5e581df970f0d /src/RendererSection.cpp | |
parent | 2017-08-05 (diff) | |
download | AltCraft-8b275c0b0a1064a813ef14a109b64e1fce461893.tar AltCraft-8b275c0b0a1064a813ef14a109b64e1fce461893.tar.gz AltCraft-8b275c0b0a1064a813ef14a109b64e1fce461893.tar.bz2 AltCraft-8b275c0b0a1064a813ef14a109b64e1fce461893.tar.lz AltCraft-8b275c0b0a1064a813ef14a109b64e1fce461893.tar.xz AltCraft-8b275c0b0a1064a813ef14a109b64e1fce461893.tar.zst AltCraft-8b275c0b0a1064a813ef14a109b64e1fce461893.zip |
Diffstat (limited to '')
-rw-r--r-- | src/RendererSection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/RendererSection.cpp b/src/RendererSection.cpp index 62a0dc7..fbb9c19 100644 --- a/src/RendererSection.cpp +++ b/src/RendererSection.cpp @@ -172,7 +172,7 @@ void RendererSection::SetEnabled(bool isEnabled) { this->isEnabled = isEnabled; } -bool RendererSection::IsNeedUpdate() { +bool RendererSection::IsNeedResourcesPrepare() { size_t currentHash = world->GetSection(sectionPosition).GetHash(); bool isNeedUpdate = currentHash != hash; return isNeedUpdate; @@ -188,7 +188,7 @@ void RendererSection::PrepareResources() { for (int z = 0; z < 16; z++) { for (int x = 0; x < 16; x++) { Vector blockPos = Vector(x, y, z) + (sectionPosition * 16); - Block &block = world->GetBlock(blockPos); + Block block = world->GetBlock(blockPos); if (block.id == 0) continue; |